Add h-entry tags to blog and notes
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
ebaaaa1963
commit
5613234328
@ -1,11 +1,12 @@
|
|||||||
extends layout
|
extends layout
|
||||||
|
|
||||||
mixin entry($item)
|
mixin entry($item)
|
||||||
.longform_list__item
|
article.longform_list__item
|
||||||
p
|
p
|
||||||
a(href="{$item['urlrel']}") !{$item['title']}
|
a(href="{$item['urlrel']}").p-name !{$item['title']}
|
||||||
br
|
br
|
||||||
| !{$item['date_formatted']}
|
| On
|
||||||
|
time(datetime="{$item['date']}").dt-published !{$item['date_formatted']}
|
||||||
|
|
||||||
block content
|
block content
|
||||||
header.h-card
|
header.h-card
|
||||||
@ -41,5 +42,5 @@ block content
|
|||||||
a(href="/about") about me
|
a(href="/about") about me
|
||||||
|
|
||||||
.longform_list
|
.longform_list
|
||||||
each $item in $posts
|
each $item in $posts
|
||||||
+entry($item)
|
+entry($item)
|
||||||
|
|||||||
@ -1,11 +1,12 @@
|
|||||||
extends layout
|
extends layout
|
||||||
|
|
||||||
mixin entry($item)
|
mixin entry($item)
|
||||||
.longform_list__item
|
article.longform_list__item
|
||||||
p
|
p
|
||||||
| !{$item['date_formatted']}
|
a(href="{$item['urlrel']}").p-name !{$item['title']}
|
||||||
br
|
br
|
||||||
a(href="{$item['urlrel']}") !{$item['title']}
|
| On
|
||||||
|
time(datetime="{$item['date']}").dt-published !{$item['date_formatted']}
|
||||||
|
|
||||||
block content
|
block content
|
||||||
header
|
header
|
||||||
@ -24,5 +25,5 @@ block content
|
|||||||
a(href="/rss/notes") notes
|
a(href="/rss/notes") notes
|
||||||
|
|
||||||
.longform_list
|
.longform_list
|
||||||
each $item in $posts
|
each $item in $posts
|
||||||
+entry($item)
|
+entry($item)
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
extends layout
|
extends layout
|
||||||
|
|
||||||
mixin entry($item)
|
mixin entry($item)
|
||||||
.longform_list__item
|
article.longform_list__item
|
||||||
p
|
p
|
||||||
a(href="{$item['urlrel']}") !{$item['title']}
|
a(href="{$item['urlrel']}") !{$item['title']}
|
||||||
br
|
br
|
||||||
@ -16,5 +16,5 @@ block content
|
|||||||
|
|
||||||
main
|
main
|
||||||
.longform_list
|
.longform_list
|
||||||
each $item in $projects
|
each $item in $projects
|
||||||
+entry($item)
|
+entry($item)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user