15 lines
556 B
Plaintext
15 lines
556 B
Plaintext
---
|
|
layout: layouts/base.njk
|
|
title: Nathan Upchurch | Blank
|
|
structuredData: none
|
|
---
|
|
<article data-pagefind-body>
|
|
<h1>Badge collection</h1>
|
|
<p>Here are some badges I picked up around the web. If you see your badge here and would like a link attached, <a href="/me">let me know!</a></p>
|
|
<div class="badges">
|
|
{% for badge in badges.badges %}
|
|
{% if badge.linkURL %}<a href="{{ badge.linkURL }}">{% endif %}<img alt="{{ badge.altText }}" src="{{ badges.imgBaseUrl }}{{ badge.imageURL }}">{% if badge.linkURL %}</a>{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
</article>
|