Toevoegen section-template voor lidmaatschapspagina
This commit is contained in:
parent
8cec5fa6c2
commit
575eaf2c24
25
themes/nluug/layouts/lidmaatschap/section.html
Normal file
25
themes/nluug/layouts/lidmaatschap/section.html
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
{{ partial "head.html" . }}
|
||||||
|
<body>
|
||||||
|
<a class="skip-link" href="#main">Skip to main</a>
|
||||||
|
<main id="main">
|
||||||
|
<div class="content">
|
||||||
|
{{ partial "header.html" . }}
|
||||||
|
<section>
|
||||||
|
<ul reversed class="list">
|
||||||
|
{{ range .Pages }}
|
||||||
|
<li>
|
||||||
|
<a class="link" href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}
|
||||||
|
</a>
|
||||||
|
<!-- <hr class="hr-list">
|
||||||
|
<time class="g time" datetime="{{ dateFormat "2006-01-02" .Date }}">{{ dateFormat "02/01/06" .Date }}</time> -->
|
||||||
|
</li>
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
{{ .Content }}
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
</body>
|
||||||
|
</html>
|
Reference in a new issue