2015-03-02 12:06:05 -08:00
|
|
|
---
|
|
|
|
layout: page
|
|
|
|
title: My website
|
2015-03-03 01:03:01 -08:00
|
|
|
subtitle: This is where I will tell my friends way too much about me
|
2017-01-06 19:33:51 +11:00
|
|
|
use-site-title: true
|
2015-03-02 12:06:05 -08:00
|
|
|
---
|
|
|
|
|
|
|
|
<div class="posts-list">
|
|
|
|
{% for post in paginator.posts %}
|
|
|
|
<article class="post-preview">
|
2019-06-08 13:34:33 +08:00
|
|
|
<a href="{{ post.url | relative_url }}">
|
2015-03-02 12:06:05 -08:00
|
|
|
<h2 class="post-title">{{ post.title }}</h2>
|
2016-06-19 19:09:43 -05:00
|
|
|
|
2015-03-02 12:06:05 -08:00
|
|
|
{% if post.subtitle %}
|
|
|
|
<h3 class="post-subtitle">
|
|
|
|
{{ post.subtitle }}
|
|
|
|
</h3>
|
2016-06-19 19:09:43 -05:00
|
|
|
{% endif %}
|
2015-03-02 12:06:05 -08:00
|
|
|
</a>
|
|
|
|
|
|
|
|
<p class="post-meta">
|
2020-04-24 01:18:23 +02:00
|
|
|
{% assign date_format = site.date_format | default: "%B %-d, %Y" %}
|
|
|
|
Posted on {{ post.date | date: date_format }}
|
2015-03-02 12:06:05 -08:00
|
|
|
</p>
|
2016-06-19 19:09:43 -05:00
|
|
|
|
2016-12-24 17:48:55 -05:00
|
|
|
<div class="post-entry-container">
|
|
|
|
{% if post.image %}
|
|
|
|
<div class="post-image">
|
2019-06-08 13:34:33 +08:00
|
|
|
<a href="{{ post.url | relative_url }}">
|
2019-06-14 01:28:17 +08:00
|
|
|
<img src="{{ post.image | relative_url }}">
|
2016-12-24 17:48:55 -05:00
|
|
|
</a>
|
|
|
|
</div>
|
2016-10-07 04:56:48 -05:00
|
|
|
{% endif %}
|
2016-12-24 17:48:55 -05:00
|
|
|
<div class="post-entry">
|
2020-04-24 01:18:23 +02:00
|
|
|
{% assign excerpt_length = site.excerpt_length | default: 50 %}
|
|
|
|
{{ post.excerpt | strip_html | xml_escape | truncatewords: excerpt_length }}
|
2016-12-24 17:48:55 -05:00
|
|
|
{% assign excerpt_word_count = post.excerpt | number_of_words %}
|
2020-04-24 01:18:23 +02:00
|
|
|
{% if post.content != post.excerpt or excerpt_word_count > excerpt_length %}
|
2019-06-08 13:34:33 +08:00
|
|
|
<a href="{{ post.url | relative_url }}" class="post-read-more">[Read More]</a>
|
2016-12-24 17:48:55 -05:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
2015-03-02 12:06:05 -08:00
|
|
|
</div>
|
2016-06-19 19:09:43 -05:00
|
|
|
|
2016-07-27 17:11:58 -05:00
|
|
|
{% if post.tags.size > 0 %}
|
2016-07-27 15:19:16 -05:00
|
|
|
<div class="blog-tags">
|
2016-10-07 04:56:48 -05:00
|
|
|
Tags:
|
2016-07-27 17:11:58 -05:00
|
|
|
{% if site.link-tags %}
|
2016-07-27 15:19:16 -05:00
|
|
|
{% for tag in post.tags %}
|
2019-06-08 13:34:33 +08:00
|
|
|
<a href="{{ '/tags' | relative_url }}#{{- tag -}}">{{- tag -}}</a>
|
2016-07-27 15:19:16 -05:00
|
|
|
{% endfor %}
|
2016-07-27 17:11:58 -05:00
|
|
|
{% else %}
|
|
|
|
{{ post.tags | join: ", " }}
|
|
|
|
{% endif %}
|
2016-07-27 15:19:16 -05:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
2016-07-27 16:46:42 -05:00
|
|
|
|
2015-03-02 12:06:05 -08:00
|
|
|
</article>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% if paginator.total_pages > 1 %}
|
|
|
|
<ul class="pager main-pager">
|
|
|
|
{% if paginator.previous_page %}
|
|
|
|
<li class="previous">
|
2019-06-08 13:34:33 +08:00
|
|
|
<a href="{{ paginator.previous_page_path | relative_url }}">← Newer Posts</a>
|
2015-03-02 12:06:05 -08:00
|
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
{% if paginator.next_page %}
|
|
|
|
<li class="next">
|
2019-06-08 13:34:33 +08:00
|
|
|
<a href="{{ paginator.next_page_path | relative_url }}">Older Posts →</a>
|
2015-03-02 12:06:05 -08:00
|
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
</ul>
|
|
|
|
{% endif %}
|