2019-01-21 15:42:32 -05:00
|
|
|
<h6>{{ page.tabtitle }}</h6>
|
2018-01-12 22:49:57 -05:00
|
|
|
{% for post in site.posts %}
|
|
|
|
{% if post.topics contains page.title %}
|
2018-02-10 23:25:07 -05:00
|
|
|
<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 %}
|
2018-01-12 22:49:57 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-02-10 23:25:07 -05:00
|
|
|
<div id="desc">{{ post.short_desc }}</div>
|
2018-01-12 22:49:57 -05:00
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|