the-internet-vagabond-dot-com/_includes/all_posts.html

14 lines
385 B
HTML
Raw Permalink Normal View History

2018-01-13 05:17:30 +00:00
{% for post in site.posts %}
2018-02-11 04:25:07 +00: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}}.html">{{topic}}</a>
{% endfor %}
2018-01-13 05:17:30 +00:00
</div>
2018-02-11 04:25:07 +00:00
</div>
<div id="desc">{{ post.short_desc }}</div>
2018-01-13 05:17:30 +00:00
{% endfor %}