A charming Jekyll theme.
jekyll-theme
1---
2layout: default
3---
4
5<article class="post">
6 <header class="post-header">
7 {%- if page.title and page.title != "" -%}
8 <h1 class="post-titlee">
9 {{- page.title -}}
10 </h1>
11 {%- endif -%}
12 </header>
13
14 <div class="post-content e-content">
15 {{ content }}
16 </div>
17</article>
18
19
20<div class="blog-list h-feed">
21 {%- include blog/categories.html -%}
22
23 {% for post in site.posts -%}
24 {%- assign is_archive = true -%}
25
26 {%- include blog/post.html post=post is_archive=is_archive -%}
27 {%- endfor -%}
28</div>