Added syntax highlighting, remove font, many small improvements. Hot fix font: Athelas shows weird symbols in Chrome.
17 lines
506 B
HTML
17 lines
506 B
HTML
{{ define "main" }}
|
|
{{ .Content }}
|
|
{{ $pages := .Paginate (where .Site.RegularPages "Type" "ne" "page") }}
|
|
{{ range $pages.Pages }}
|
|
<a href="{{ .RelPermalink }}" style="display:block">
|
|
<div class="list">
|
|
{{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
|
|
{{ $dateHuman := .Date | time.Format "2006-01-02" }}
|
|
<time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
|
|
|
|
<h2>{{ .Title }}</h2>
|
|
|
|
<p class="lead">{{ .Description }}</p>
|
|
</div>
|
|
</a>
|
|
{{ end }}
|
|
{{ end }}
|