#+AUTHOR: testdata #+TITLE: blorg #+BASE_URL: /go-org/blorg #+OPTIONS: toc:nil title:nil #+CONTENT: ./content #+PUBLIC: ./public * templates ** head #+name: head #+begin_src html {{ .Title }} #+end_src ** header #+name: header #+begin_src html
#+end_src ** item #+name: item #+begin_src html {{ template "head" . }} {{ template "header" . }}

{{ .Title }}
{{ .Subtitle }}

{{ .Content }}
#+end_src ** list #+name: list #+begin_src html {{ template "head" . }} {{ template "header" . }}

{{ .Title }}

#+end_src ** index #+name: index #+begin_src html {{ template "head" . }} {{ template "header" . }}

{{ .Title }}

Only pages that have a date will be listed here - e.g. not about.html

#+end_src