16 lines
330 B
HTML
16 lines
330 B
HTML
{{ define "header" }}
|
|
|
|
{{ end }}
|
|
|
|
{{ define "navbar" }}
|
|
{{ partial "navbar-2.html" (dict "baseURL" .Site.BaseURL "title" .Site.Title "hasToggleButton" true) }}
|
|
{{ end }}
|
|
|
|
|
|
{{ define "content" }}
|
|
<h1>Here is the actual content</h1>
|
|
{{ end }}
|
|
|
|
{{ define "scripts" }}
|
|
<script src="/assets/js/list.js"></script>
|
|
{{ end }}
|