mirror of
https://github.com/jimeh/jimeh.me-v3.0.git
synced 2026-02-19 05:46:40 +00:00
22 lines
464 B
HTML
22 lines
464 B
HTML
---
|
|
layout: post-list
|
|
title: jimeh / blog
|
|
---
|
|
|
|
{% for post in paginator.posts %}
|
|
<div class="post-item">
|
|
<div class="post-meta">
|
|
<p class="date">{{ post.date | date: "<i>%d</i><b>%b</b>" }}</p>
|
|
</div>
|
|
|
|
<h1 class="post-title"><a href="/blog{{ post.url }}">{{ post.title }}</a></h1>
|
|
|
|
<div class="post-content">
|
|
{{ post.content }}
|
|
</div>
|
|
|
|
<p class="post-comment-link">
|
|
<a href="/blog{{ post.url }}#disqus_thread">Comments</a>
|
|
</p>
|
|
</div>
|
|
{% endfor %} |