yarmo.eu/views/projects_details.pug
Yarmo Mackenbach 262c2bfa98
All checks were successful
continuous-integration/drone/push Build is passing
Fix lacking subsection class
2020-06-23 17:51:56 +02:00

33 lines
942 B
Plaintext

extends layout
mixin webmention($item)
p
a(href="{$item['source']}") !{$item['title']}
| by !{$item['author_name']} on !{$item['date']} at !{$item['time']}
block content
header
nav
a(href="/about") about me
| >
a(href="/projects") projects
| > !{$project['slug']}
main
article.longform
h1 !{$project['title']}
p
| Got an idea or a comment?
a(href="/contact") Feel free to contact me!
p.longform__header
.longform__content
| !{$project['content']}
.webmentions.subsection
h2 Webmentions
if ($project['hasWebmentions'])
each $item in $project["webmentions"]
+webmention($item)
else
p This project has not been mentioned yet.