A charming Jekyll theme. linus.arthr.dev/
jekyll-theme
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(archive): new page layout

+34
+28
_layouts/archive.html
··· 1 + --- 2 + layout: 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>
+6
archive.md
··· 1 + --- 2 + layout: archive 3 + title: Site archives 4 + --- 5 + 6 + This site has {{ site.posts | size }} posts.