mods.shadowfacts.net/index.html

19 lines
281 B
HTML

---
layout: default
---
<div class="home">
<h1>Projects</h1>
<ul class="mods-list">
{% assign sorted = site.mods | sort %}
{% for mod in sorted %}
<li>
<h2><a href="{{ mod.url }}">{{ mod.title }}</a></h2>
<p>{{ mod.tagline }}</p>
</li>
{% endfor %}
</ul>
</div>