Better definition layout, page_status labels, content changes

This commit is contained in:
magmaus3 2023-08-10 14:17:28 +02:00
parent e46e36412d
commit 4d4ee393af
Signed by: magmaus3
GPG key ID: 966755D3F4A9B251
19 changed files with 367 additions and 14 deletions

View file

@ -0,0 +1,9 @@
<div class="content_notice">
{{ range .Params.page_status }}
{{ if eq . "stub" }}
<div class="stub">
This page is a <a href="/page_status/stub">stub</a>, you might want to expand it.
</div>
{{ end }}
{{ end }}
</div>

View file

@ -0,0 +1,8 @@
<div class="see_also">
<h3>See also: </h3>
<ul>
{{ range .Params.see_also }}
<li><a href="{{ (site.GetPage .).Permalink }}">{{ (site.GetPage . ).LinkTitle }}</a></li>
{{ end }}
</ul>
</div>