Use translations, fix 'old' style.

This commit is contained in:
Chris Josten 2021-03-10 18:30:32 +01:00
parent ed2926fb16
commit 75a4e86ea1
15 changed files with 103 additions and 139 deletions

View file

@ -1,25 +0,0 @@
extends /parts/page.dt
block header
title Posts - Netsoj.nl
block sidebar
block content
header
h1.title Post list
- import vibe.d;
- if (articleList.length == 0)
p No posts found
- else
- import utils;
- foreach(article; articleList)
article
header
a(href="/posts/#{article.slug}", rel="bookmark")
h2.title #{article.title}
p.subtitle
| By #{article.author} on #{article.firstPublished.toHumanString}
- if (article.firstPublished != article.updated)
|, updated on #{article.updated.toHumanString}
p #{article.excerpt}…

View file

@ -1,25 +0,0 @@
extends /parts/page
block meta_data
- page_type = "article";
- page_title = content.title;
- page_url = "/post/" ~ content.slug;
- page_description = content.excerpt;
block extra_meta_data
meta(name="og:article:author:username", content=content.author)
meta(name="og:article:published_time", content=content.firstPublished.toISOExtString)
- if (content.isModified)
meta(name="og:article:modified_time", content=content.updated.toISOExtString)
block content
article(itemscope, itemtype="https://schema.org/BlogPosting")
- import utils;
header
h1.title(itemprop="headline") #{content.title}
p.subtitle
| By <span itemprop="author">#{content.author}</span>
| on <time datetime="#{content.firstPublished.toISOExtString}" itemprop="datePublished">#{content.firstPublished.toHumanString}</time>
- if (content.isModified)
|, updated on <time datetime="#{content.updated.toISOExtString}" itemprop="dateModified">#{content.updated.toHumanString}</time>
section(itemprop="articleBody") !{content.content}

View file

@ -1,11 +0,0 @@
extends /parts/page.dt
block header
title #{error.message} - Netsoj.nl
block sidebar
block content
header
h1.title #{error.message} (#{error.code})
pre #{error.debugMessage}

View file

@ -1,4 +1,4 @@
extends /parts/page.dt
extends parts/page
block meta_data
- page_title = content.title;

View file

@ -1,4 +1,4 @@
extends /parts/page.dt
extends parts/page
block header
title Projects - Chris Netsoj.nl

View file

@ -1,4 +1,4 @@
extends /parts/page
extends parts/page
block meta_data
- page_title = content.title;
- page_url = "/project/" ~ content.slug;