Reorganize post listing
parent
89fdd25ced
commit
e8906dba0d
|
@ -10,6 +10,16 @@
|
||||||
<a href={{ page.permalink }}>{{page.title}}</a>
|
<a href={{ page.permalink }}>{{page.title}}</a>
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
|
{% if page.description %}
|
||||||
|
<div class="description">
|
||||||
|
{{ page.description }}
|
||||||
|
</div>
|
||||||
|
{% elif page.summary %}
|
||||||
|
<div class="description">
|
||||||
|
{{ page.summary }}…
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<div class="meta">
|
<div class="meta">
|
||||||
posted on <time>{{ page.date | date(format="%Y-%m-%d") }}</time>
|
posted on <time>{{ page.date | date(format="%Y-%m-%d") }}</time>
|
||||||
</div>
|
</div>
|
||||||
|
@ -17,19 +27,6 @@
|
||||||
{{ post_macros::tags(page=page) }}
|
{{ post_macros::tags(page=page) }}
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
<div class="description">
|
|
||||||
{% if page.description %}
|
|
||||||
{{ page.description }}
|
|
||||||
{% elif page.summary %}
|
|
||||||
{{ page.summary }}…
|
|
||||||
{% else %}
|
|
||||||
{% set hide_read_more = true %}
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{% if not hide_read_more %}
|
|
||||||
<a class="readmore" href={{ page.permalink }}>Read more ⟶</a>
|
|
||||||
{% endif %}
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
{% endfor -%}
|
{% endfor -%}
|
||||||
|
|
Loading…
Reference in New Issue