forked from ntpuecon/podcastcompetition
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathblog.html
More file actions
executable file
·27 lines (25 loc) · 870 Bytes
/
blog.html
File metadata and controls
executable file
·27 lines (25 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
layout: page
title: Blog
permalink: /blog/
---
<h1 class="page-title">{{ page.title | escape }}</h1>
<div class="section">
<div class="container last-post">
<section>
<ul class="collection">
{% for post in site.posts %}
<li class="collection-item avatar">
{% assign date_format = site.minima.date_format | default: "%m/%d" %}
<div class="date-post">{{ post.date | date: date_format }}</div>
<span class="title"><a class="post-link" href="{{ post.url | relative_url }}">{{ post.title | escape }}</a></span>
<p>
{{ post.content | truncatewords: 10 }}
</p>
<a href="{{ post.url | relative_url }}" class="secondary-content"><i class="material-icons">navigate_next</i></a>
</li>
{% endfor %}
</ul>
</section>
</div>
</div>