diff options
| author | Bradley Taunt <git@btxx.org> | 2026-04-01 08:29:52 -0400 |
|---|---|---|
| committer | Bradley Taunt <git@btxx.org> | 2026-04-01 08:29:52 -0400 |
| commit | ed113d077029017775cf32e6dddd39a2ae9ad694 (patch) | |
| tree | ee52ffe74f65ab8af491e47919be7b55116d629d /_layouts | |
| parent | 8484167aea5c3acfcdd0768e305de705fde37208 (diff) | |
Fix missing HOF members on blog article pages
Diffstat (limited to '_layouts')
| -rw-r--r-- | _layouts/post.html | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index 62a2ebc..a9b52aa 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -8,14 +8,13 @@ layout: default <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>I'm extremely grateful for the support from the "Hall of Fame" supporters:</p> + {% assign websites = site.data.sites %} + {% for item in websites %} + {% if item.hof == true %} + <span><a href="https://{{ item.domain }}">{{ item.domain }}</a>,</span> + {% endif %} + {% endfor %} <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> |
