2020-06-24 08:08:28 +00:00
|
|
|
extends /parts/page
|
|
|
|
block header
|
2020-06-24 15:40:20 +00:00
|
|
|
title #{content.title} - Chris Netsoj.nl
|
|
|
|
meta(name="og:title", content="#{content.title}")
|
|
|
|
meta(name="og:type", content="article")
|
|
|
|
meta(name="og:article", content="article")
|
2020-06-24 08:08:28 +00:00
|
|
|
|
|
|
|
block sidebar
|
|
|
|
|
|
|
|
block content
|
2020-06-24 17:57:04 +00:00
|
|
|
article(itemscope, itemtype="https://schema.org/BlogPosting")
|
2020-06-24 08:08:28 +00:00
|
|
|
- import utils;
|
|
|
|
header
|
2020-06-24 17:57:04 +00:00
|
|
|
h1.title(itemprop="headline") #{content.title}
|
2020-06-24 08:08:28 +00:00
|
|
|
p.subtitle
|
2020-06-24 17:57:04 +00:00
|
|
|
| By <span itemprop="author">#{content.author}</span>
|
|
|
|
| on <span itemprop="datePublished">#{content.firstPublished.toHumanString}</span>
|
2020-06-24 08:08:28 +00:00
|
|
|
- if (content.firstPublished != content.updated)
|
2020-06-24 17:57:04 +00:00
|
|
|
|, updated on <span itemprop="dateModified">#{content.updated.toHumanString}</span>
|
|
|
|
section(itemprop="articleBody") !{content.content}
|