diff options
| author | la-ninpre <leobrekalini@gmail.com> | 2021-05-23 19:55:39 +0300 |
|---|---|---|
| committer | la-ninpre <leobrekalini@gmail.com> | 2021-05-23 19:55:39 +0300 |
| commit | 5ed1e6e32918a6e98e6854017248e3e88e95f87c (patch) | |
| tree | 6acc08a1dc8772eceefb5b419067b8a9c9f63199 /_includes | |
| parent | 3648521e599ee27985d29bad379f40b2a66689cc (diff) | |
| download | aaoth.xyz-5ed1e6e32918a6e98e6854017248e3e88e95f87c.tar.gz aaoth.xyz-5ed1e6e32918a6e98e6854017248e3e88e95f87c.zip | |
add latest post to the home page
and add tags to post-preview.html
Diffstat (limited to '_includes')
| -rw-r--r-- | _includes/post-preview.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/_includes/post-preview.html b/_includes/post-preview.html index d86c92c..53ed59d 100644 --- a/_includes/post-preview.html +++ b/_includes/post-preview.html @@ -6,5 +6,10 @@ <p> <a href="{{ post.url }}">read more...</a> </p> - <small><p>{{ post.date | date_to_string }}</p></small> + <small> + <p>{{ post.date | date_to_string }} | + {% for tag in post.tags %}<a href="/tags/{{tag}}">{{tag}} </a> + {% endfor %} + </p> + </small> </div> |
