mirror of
https://github.com/jimeh/jimeh.me-v3.0.git
synced 2026-02-19 05:46:40 +00:00
21 lines
604 B
HTML
21 lines
604 B
HTML
<div class="post-item">
|
||
<div class="post-meta">
|
||
<p class="date">{{ page.date | date: "<i>%d</i><b>%b</b>" }}</p>
|
||
</div>
|
||
|
||
<h1 class="post-title">
|
||
<a href="/blog{{ page.url }}">{{ page.title }}</a>
|
||
<div class="post-title-sub">
|
||
by Jim Myhrberg – tags:
|
||
{% for tag in page.categories %} <a href="/blog/tag/{{tag}}" rel="tag"><i class="hash">#</i>{{tag}}</a>{% if forloop.last != true %},{% endif %}{% endfor %}
|
||
</div>
|
||
</h1>
|
||
|
||
<div class="post-content">
|
||
{{ page.content }}
|
||
</div>
|
||
|
||
<p class="post-comment-link">
|
||
<a href="/blog{{ page.url }}#disqus_thread">Comments</a>
|
||
</p>
|
||
</div> |