diff options
| author | Veikka Kähkönen <insiding@gmail.com> | 2017-11-28 16:24:05 +0200 |
|---|---|---|
| committer | Veikka Kähkönen <insiding@gmail.com> | 2017-11-28 16:24:05 +0200 |
| commit | 63ecf999bb111b745088754b106bf4b2fbfa30c9 (patch) | |
| tree | 3c95ceac8c7d3b2e0acfa809bcfa64159d7007a5 /index.html | |
| parent | 6f0bbb90af95be29f651d541926473fcc59da07f (diff) | |
Make post list prettier on index
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 21 |
1 files changed, 17 insertions, 4 deletions
@@ -11,10 +11,23 @@ layout: default <div class="col span_1_of_2 info_section"> <h1 class="info_section__title">Ajankohtaista</h1> - {%for post in site.posts limit:5 %} - <li><a href="{{ site.baseurl}}{{ post.url }}">{{ post.date | date: "%d.%m.%Y" }} - {{ post.title }}</a></li> - {% endfor %} - <li><a href="{{ site.baseurl}}/uutiset">Lisää uutisia uutisarkistossa</a></li> + <ul class="post_list"> + {% for post in site.posts limit: 5 %} + <li class="post_list__element"> + <a href="{{ post.url | absolute_url }}"> + <h4 class="post_list__title">{{ post.title }}</h4> + </a> + <time datetime="{{ post.date | date_to_xmlschema }}"> + {{ post.date | date: "%d.%m.%Y" }} + </time> + <p> + {{ post.excerpt | strip_html }} + <a href="{{ post.url | absolute_url }}">Lisää...</a> + </p> + </li> + {% endfor %} + </ul> + <a href="{{ site.baseurl}}/uutiset">Vanhemmat uutiset</a> </div> <div class="col span_1_of_2"> |
