diff options
Diffstat (limited to 'themes/researcher/layouts/_default/baseof.html')
| -rw-r--r-- | themes/researcher/layouts/_default/baseof.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/themes/researcher/layouts/_default/baseof.html b/themes/researcher/layouts/_default/baseof.html new file mode 100644 index 0000000..237c540 --- /dev/null +++ b/themes/researcher/layouts/_default/baseof.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html lang="{{ .Site.Params.lang }}"> + {{- partial "head.html" . -}} + {{ if or (.Params.math) (.Site.Params.math) }} + {{- partial "math.html" . -}} + {{ end }} + <body> + {{- partial "header.html" . -}} + <div id="content"> + {{- block "main" . }}{{- end }} + </div> + {{- partial "footer.html" . -}} + </body> +</html> |