aboutsummaryrefslogtreecommitdiff
path: root/_layouts/post.html
blob: 62a2ebc455adedf9c2a964766fe3c63c8e93f67d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
layout: default
---

<h2 class="post">{{ page.title }}</h2>
<time class="post-time" datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%a, %d %b %Y" }}</time>
{{ content }}

<div class="thanks">
    <h3>Special Thanks</h3>
    <p>I'm extremely grateful for the support from the "Hall of Fame" supporters:<br>
    {% assign websites = site.site_listings %}
        {% for item in websites %}
            {% if item.hof == true %}
            <span><a target="_blank" href="https://{{ item.pageurl }}">{{ item.pageurl }}</a></span>
            {% endif %}
        {% endfor %}
    </p>
    <p>If you too would like to support this project and help fund more articles like this one:<br><a href="/hall-of-fame">Become a supporter today →</a></p>
</div>