You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
946 B
HTML

<extend template=base.html />
<title id=title var=$page.title></title>
<head id=head>
<style>
.til { padding: 0; }
.til>li { display: block; margin: 2rem 0; }
.til>li>div { line-height: 2; }
.til>li>time, .til>li>div>a.external { color: gray; }
</style>
</head>
<main id=main>
<header>
<h1 var=$page.title></h1>
<em var=$page.description></em>
<br/>
Last updated: <time datetime="$page.date.formatHTTP()" var='$page.date.format("January 02, 2006")'></time>
</header>
<div var=$page.content></div>
<ol class="til">
<li loop=$page.subpages()>
<time datetime="$loop.it.date.formatHTTP()" var='$loop.it.date.format("January 02, 2006")'></time>
<div>
<a href="$loop.it.permalink()" var="$loop.it.title"></a>
(<a rel="nofollow noopener" class="external" href="$page.custom.get('source', '#')">source</a>)
</div>
</li>
</ol>
</main>
<footer id=footer></footer>