list.html 330 B

12345678910111213141516
  1. {{ define "header" }}
  2. {{ end }}
  3. {{ define "navbar" }}
  4. {{ partial "navbar-2.html" (dict "baseURL" .Site.BaseURL "title" .Site.Title "hasToggleButton" true) }}
  5. {{ end }}
  6. {{ define "content" }}
  7. <h1>Here is the actual content</h1>
  8. {{ end }}
  9. {{ define "scripts" }}
  10. <script src="/assets/js/list.js"></script>
  11. {{ end }}