19 lines
535 B
HTML
Executable File
19 lines
535 B
HTML
Executable File
|
|
<footer>
|
|
<div class="footer-inner width-page">
|
|
<div class="footer-text prose">
|
|
{{ .Site.Copyright | $.Page.RenderString (dict "markup" "goldmark" "display" "block") }}
|
|
|
|
<p>Licensed under <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA 4.0</a>.</p>
|
|
</div>
|
|
|
|
<ul class="row">
|
|
{{ range site.Menus.footer }}
|
|
<li>
|
|
<a href="{{ .URL }}" {{ if strings.HasPrefix .URL "http" }}target="_blank"{{ end }}>{{ .Name }}</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
</footer>
|