Files
jimeh.me-v3.0/source/blog/_includes/post-div.html
2010-02-24 13:07:16 +02:00

21 lines
604 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>