
Upgrade the Geekdocs theme from 0.32.4 to 0.44.1. This changes the layout a little bit; most notably the 'documentation' menu is in a larger font. I tried the upgrade to solve an issue of images not appearing (while writing not-yet-committed changes). That wasn't solved by the upgrade, but in the spirit of keeping up to date I'd thought I'd commit this upgrade anyway.
48 lines
1.2 KiB
HTML
48 lines
1.2 KiB
HTML
{{ define "main" }}
|
|
{{ range .Paginator.Pages }}
|
|
<article class="gdoc-markdown gdoc-post">
|
|
<header class="gdoc-post__header">
|
|
<h1 class="gdoc-post__title">
|
|
<a href="{{ .RelPermalink }}">{{ partial "utils/title" . }}</a>
|
|
</h1>
|
|
</header>
|
|
<section>
|
|
{{ .Summary }}
|
|
</section>
|
|
<div class="gdoc-post__readmore">
|
|
{{ if .Truncated }}
|
|
<a
|
|
class="flex-inline align-center fake-link"
|
|
title="{{ i18n "posts_read_more" }}"
|
|
href="{{ .RelPermalink }}"
|
|
>
|
|
{{ i18n "posts_read_more" }}
|
|
<i class="gdoc-icon">gdoc_arrow_right_alt</i>
|
|
</a>
|
|
{{ end }}
|
|
</div>
|
|
|
|
<footer class="gdoc-post__footer">
|
|
<div class="flex flex-wrap align-center gdoc-post__meta">
|
|
{{ partial "posts/metadata.html" . }}
|
|
</div>
|
|
</footer>
|
|
</article>
|
|
{{ end }}
|
|
{{ partial "pagination.html" . }}
|
|
{{ end }}
|
|
|
|
{{ define "post-tag" }}
|
|
<span class="gdoc-post__tag">
|
|
<span class="gdoc-button">
|
|
<a
|
|
class="gdoc-button__link"
|
|
href="{{ .page.RelPermalink }}"
|
|
title="{{ i18n "posts_tagged_with" .name }}"
|
|
>
|
|
{{ .name }}
|
|
</a>
|
|
</span>
|
|
</span>
|
|
{{ end }}
|