the-internet-vagabond-dot-com/_includes/topics.html
2019-01-21 15:42:32 -05:00

15 lines
509 B
HTML

<h6>{{ page.tabtitle }}</h6>
{% for post in site.posts %}
{% if post.topics contains page.title %}
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<div class="" id="details">
<div class="" id="date">{{ post.pub }}</div>
<div class="" id="tags">
{% for topic in post.topics %}
<a href="/topics/{{topic}}">{{topic}}</a>
{% endfor %}
</div>
</div>
<div id="desc">{{ post.short_desc }}</div>
{% endif %}
{% endfor %}