Files
vladfaust.github.io/index.pug
2020-08-29 19:40:45 +03:00

31 lines
638 B
Plaintext

---
eleventyExcludeFromCollections: true
pagination:
data: collections.all
size: 2
title: "Vlad Faust Blog"
titleNoAppend: true
description: "Vlad Faust's personal blog"
cover: /public/img/me.jpg
---
doctype html
html(lang='en')
head
include /head.pug
//- Styles
link(rel='stylesheet', href='/public/styles/index.css')
body
include /header.pug
main
h2 Recent posts
ul.posts
each post in collections.all.reverse().filter((post) => !post.data.hidden)
li
span.date= post.date.toDateString()
a.title(href=post.url)= post.data.title
include /footer.pug