-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (45 loc) · 1.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
---
description: Spell is a web developer, designer and digital accessibility specialist living in beautiful Allentown, PA. In his spare time, he can be found restoring retro arcade machines.
metatitle: Michael Spellacy (Spell) - Web developer and accessibility specialist
---
<h1>Michael "Spell" Spellacy <span>Front-end developer, designer and accessibility specialist in Allentown, PA</span></h1>
<div class="article-group">
{% for post in site.posts %}
{% if post.category contains "social" or post.category contains "links" or post.tags contains "Articles" %}
{% capture day %}{{ post.date | date: '%m%d%Y' }}{% endcapture %}
{% capture nday %}{{ post.next.date | date: '%m%d%Y' }}{% endcapture %}
{% if day != nday %}
<h2>{{ post.date | date: "%A, %B %e, %Y" }}</h2>
{% endif %}
<article class="h-entry h-post">
<div>
<img src="{{ site.author-image }}?s=50" alt="">
</div>
<div>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<time datetime="{{ post.date | date: "%Y-%m-%d %H:%M" }}">{{ post.date | date: "%B %d, %Y" }}</time>
<p>{{ post.content | markdownify | strip_html | truncatewords: 35 }}</p>
{% if post.mf-photo %}
<figure>
<img src="{{post.mf-photo}}" alt="" loading="lazy" class="post-img">
</figure>
<!-- figcaption></figcaption -->
{% endif %}
</div>
</article>
{% endif %}
{% endfor %}
</div>
<!--
{% for category in site.tags %}
<h2>{{ category[0] }}</h2>
<ul>
{% for post in category[1] %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
<p><b>Published on {{ post.date | date: '%B %d, %Y' }}</b></p>
</li>
{% endfor %}
</ul>
{% endfor %}
-->