diff --git a/views/index.pug b/views/index.pug index f3f1ac9..92b3597 100644 --- a/views/index.pug +++ b/views/index.pug @@ -1,11 +1,12 @@ extends layout mixin entry($item) - .longform_list__item + article.longform_list__item p - a(href="{$item['urlrel']}") !{$item['title']} + a(href="{$item['urlrel']}").p-name !{$item['title']} br - | !{$item['date_formatted']} + | On + time(datetime="{$item['date']}").dt-published !{$item['date_formatted']} block content header.h-card @@ -41,5 +42,5 @@ block content a(href="/about") about me .longform_list - each $item in $posts - +entry($item) + each $item in $posts + +entry($item) diff --git a/views/notes.pug b/views/notes.pug index 89261c0..928f76e 100644 --- a/views/notes.pug +++ b/views/notes.pug @@ -1,11 +1,12 @@ extends layout mixin entry($item) - .longform_list__item + article.longform_list__item p - | !{$item['date_formatted']} + a(href="{$item['urlrel']}").p-name !{$item['title']} br - a(href="{$item['urlrel']}") !{$item['title']} + | On + time(datetime="{$item['date']}").dt-published !{$item['date_formatted']} block content header @@ -24,5 +25,5 @@ block content a(href="/rss/notes") notes .longform_list - each $item in $posts - +entry($item) + each $item in $posts + +entry($item) diff --git a/views/projects.pug b/views/projects.pug index 3d3b5d6..47f9480 100644 --- a/views/projects.pug +++ b/views/projects.pug @@ -1,7 +1,7 @@ extends layout mixin entry($item) - .longform_list__item + article.longform_list__item p a(href="{$item['urlrel']}") !{$item['title']} br @@ -16,5 +16,5 @@ block content main .longform_list - each $item in $projects - +entry($item) + each $item in $projects + +entry($item)