Skip to content

Commit 5be026a

Browse files
committed
Removing contacts
1 parent e532136 commit 5be026a

File tree

10 files changed

+33
-253
lines changed

10 files changed

+33
-253
lines changed

_data/menu.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,4 @@ main:
22
- name: Home
33
url: /
44
weight: 1
5-
- name: Open Source
6-
url: /open-source
7-
weight: 2
8-
- name: About
9-
url: /about/
10-
weight: 4
11-
- name: Contact
12-
url: /contact/
13-
weight: 5
145
bottom:

_data/opensource.yml

Lines changed: 0 additions & 87 deletions
This file was deleted.

_data/social.json

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1 @@
1-
[
2-
{
3-
"title": "Twitter",
4-
"fa_icon": "fab fa-twitter",
5-
"url": "https://www.twitter.com/_CalvinAllen"
6-
},
7-
{
8-
"title": "Github",
9-
"fa_icon": "fab fa-github",
10-
"url": "https://www.github.com/CalvinAllen"
11-
},
12-
{
13-
"title": "Linkedin",
14-
"fa_icon": "fab fa-linkedin",
15-
"url": "https://www.linkedin.com/in/calvin-allen"
16-
},
17-
{
18-
"title": "YouTube",
19-
"fa_icon": "fab fa-youtube",
20-
"url": "https://www.youtube.com/@CodingWithCalvin"
21-
},
22-
{
23-
"title": "Mastodon",
24-
"fa_icon": "fab fa-mastodon",
25-
"url": "https://hachyderm.io/@calvinallen"
26-
}
27-
]
1+
[]
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
<iframe src="https://embeds.beehiiv.com/9753cba3-e817-4a4b-93a0-262fa790d3aa" data-test-id="beehiiv-embed" width="100%" height="250" frameborder="0" scrolling="no" style="border-radius: 4px; border: 2px solid #e5e7eb; margin: 0; background-color: transparent;"></iframe>
2-
31
<div class="bottom">
42
<div class="container relative">
53
<div class="row align-items-center justify-content-between">
64
<div class="copyright" style="text-align: center">Copyright (&copy;) 2012 - 2024 Coding With Calvin, LLC.</div>
75
</div>
86
</div>
9-
</div>
7+
</div>

_layouts/post.html

Lines changed: 31 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -8,45 +8,40 @@
88

99
<div class="row justify-content-center">
1010
<div class="col-12 col-lg-8">
11-
{% if page.date %}
12-
<div class="post-date">{{ page.date | date_to_long_string }}</div>
13-
{% endif %}
14-
{% if page.categories %}
15-
<div class="post-categories">
16-
{% include framework/blocks/components/categories-badges.html
17-
categories=page.categories
11+
{% if page.date %}
12+
<div class="post-date">{{ page.date | date_to_long_string }}</div>
13+
{% endif %}
14+
{% if page.categories %}
15+
<div class="post-categories">
16+
{% include framework/blocks/components/categories-badges.html
17+
categories=page.categories
1818
%}
1919
{% endif %}
20-
</div>
21-
<div class="post-title">
22-
<h1>{{ page.title }}</h1>
23-
</div>
20+
</div>
21+
<div class="post-title">
22+
<h1>{{ page.title }}</h1>
23+
</div>
2424
</div>
2525
</div>
26-
26+
2727
<div class="row justify-content-center" style="text-align: center">
2828
<div class="col-12 col-lg-8">
2929
{% assign post_path = page.path | prepend: '/' | prepend: site.source %}
3030
{% capture cover_image_exists %}{% cover_exists {{ post_path }},{{ page.image }} %}{% endcapture %}
3131
{% capture alt_cover_image_exists %}{% cover_exists {{ post_path }},{{ page.image_alt }} %}{% endcapture %}
3232

3333
{% if page.youtube != null %}
34-
<iframe
35-
width="710"
36-
height="399"
37-
src="{{ page.youtube }}"
38-
frameborder="0"
39-
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
40-
allowfullscreen
41-
loading="lazy"></iframe>
34+
<iframe width="710" height="399" src="{{ page.youtube }}" frameborder="0"
35+
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen
36+
loading="lazy"></iframe>
4237
{% elsif page.image and cover_image_exists == "true" %}
43-
<div class="post-image">
44-
<img src="{{ page.image }}" alt="{{ page.title }}" />
45-
</div>
38+
<div class="post-image">
39+
<img src="{{ page.image }}" alt="{{ page.title }}" />
40+
</div>
4641
{% elsif page.image_alt and alt_cover_image_exists == "true" %}
47-
<div class="post-image">
48-
<img src="{{ page.image_alt }}" alt="{{ page.title }}" />
49-
</div>
42+
<div class="post-image">
43+
<img src="{{ page.image_alt }}" alt="{{ page.title }}" />
44+
</div>
5045

5146
{% endif %}
5247
</div>
@@ -61,24 +56,25 @@ <h1>{{ page.title }}</h1>
6156

6257
<div class="col-12 col-lg-8">
6358
<div class="content">
64-
{{ content }}
59+
{{ content }}
6560

66-
<hr />
61+
<hr />
6762

68-
<blockquote>
69-
This post, "<strong>{{ page.title }}</strong>", first appeared on <a href="{{ site.url }}{{ page.url }}">{{ site.url }}{{ page.url }}</a>
70-
</blockquote>
63+
<blockquote>
64+
This post, "<strong>{{ page.title }}</strong>", first appeared on <a href="{{ site.url }}{{ page.url }}">{{
65+
site.url }}{{ page.url }}</a>
66+
</blockquote>
7167
</div>
72-
73-
{% if site.disqus.shortname %}
68+
69+
<!-- {% if site.disqus.shortname %}
7470
{% if page.comments != false %}
7571
<div class="comments mt-3">
7672
{% include framework/global/integrations/disqus.html %}
7773
</div>
7874
{% endif %}
79-
{% endif %}
75+
{% endif %} -->
8076
</div>
8177

8278
</div>
8379
</div>
84-
</div>
80+
</div>

about.html

Lines changed: 0 additions & 25 deletions
This file was deleted.

contact.html

Lines changed: 0 additions & 11 deletions
This file was deleted.

netlify.toml

Lines changed: 0 additions & 6 deletions
This file was deleted.

opensource.html

Lines changed: 0 additions & 43 deletions
This file was deleted.

success.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)