+
+{{ end }}
\ No newline at end of file
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
new file mode 100755
index 0000000..3a83849
--- /dev/null
+++ b/layouts/_default/baseof.html
@@ -0,0 +1,29 @@
+
+
+
+
+
+ {{/* NOTE: the Site's title, and if there is a page title, that is set too
+ */}}
+
+ {{ block "title" . }}{{ .Site.Title }} {{ with .Params.Title }} | {{ .
+ }}{{ end }}{{ end }}
+
+
+ {{ hugo.Generator }} {{ $sass := resources.Get "sass/style.scss" }} {{
+ $style := $sass | css.Sass | resources.Minify | resources.Fingerprint }}
+
+
+ {{ range .Site.Params.custom_css }}
+
+ {{ end }} {{ block "favicon" . }} {{ partial "site-favicon.html" . }} {{ end
+ }}
+
+
+
+ {{ block "header" . }}{{ partial "site-header.html" .}}{{ end }}
+ {{ block "main" . }}{{ end }}
+ {{ block "footer" . }}{{ partial "site-footer.html" . }}{{ end }} {{ block
+ "scripts" . }}{{ partial "site-scripts.html" . }}{{ end }}
+
+
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
new file mode 100755
index 0000000..893c10b
--- /dev/null
+++ b/layouts/_default/list.html
@@ -0,0 +1,15 @@
+{{ define "main" }}
+
+
+ {{- .Content -}}
+
+
+ {{ range .Paginator.Pages }}
+
+ {{- partial "summary.html" . -}}
+
+ {{ end }}
+
+ {{- template "_internal/pagination.html" . -}}
+
+{{ end }}
\ No newline at end of file
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
new file mode 100755
index 0000000..091f684
--- /dev/null
+++ b/layouts/_default/single.html
@@ -0,0 +1,40 @@
+{{ define "header" }}
+{{/* We can override any block in the baseof file be defining it in the template */}}
+{{ partial "page-header.html" . }}
+{{ end }}
+
+{{ define "main" }}
+{{ $section := .Site.GetPage "section" .Section }}
+
+
+
+
+ {{/*
+ CurrentSection allows us to use the section title instead of inferring from the folder.
+ https://gohugo.io/variables/page/#section-variables-and-methods
+ */}}
+ {{with .CurrentSection.Title }}{{. | upper }}{{end}}
+
+
+ {{- .Title -}}
+
+ {{/* Hugo uses Go's date formatting is set by example. Here are two formats */}}
+
+
+
+
+ {{- .Content -}}
+ {{- partial "tags.html" . -}}
+
+ {{ template "_internal/disqus.html" . }}
+
+
+
+
+
+
+{{ end }}
\ No newline at end of file
diff --git a/layouts/_default/taxonomy.html b/layouts/_default/taxonomy.html
new file mode 100644
index 0000000..682cf7b
--- /dev/null
+++ b/layouts/_default/taxonomy.html
@@ -0,0 +1,16 @@
+{{ define "main" }}
+
+
+
Below you will find pages that utilize the taxonomy term “{{ .Title }}”
+
+
+
+
+ {{ range .Pages }}
+
+ {{ partial "summary.html" . }}
+
+ {{ end }}
+
+
+{{ end }}
\ No newline at end of file
diff --git a/layouts/_default/terms.html b/layouts/_default/terms.html
new file mode 100644
index 0000000..4b2c2d4
--- /dev/null
+++ b/layouts/_default/terms.html
@@ -0,0 +1,22 @@
+{{ define "main" }}
+{{ $data := .Data }}
+
+
+ {{ range $value.Pages }}
+ {{ partial "summary.html" . }}
+ {{ end }}
+ {{ end }}
+
+
+{{ end }}
\ No newline at end of file
diff --git a/layouts/page/single.html b/layouts/page/single.html
new file mode 100644
index 0000000..22395ac
--- /dev/null
+++ b/layouts/page/single.html
@@ -0,0 +1,18 @@
+{{ define "header" }}{{ partial "page-header.html" . }}{{ end }}
+{{ define "main" }}
+
+
+
+
+ {{ humanize .Section | upper }}
+
+
+ {{ .Title }}
+
+
+
+ {{ .Content }}
+
+
+
+{{ end }}
\ No newline at end of file
diff --git a/layouts/partials/i18nlist.html b/layouts/partials/i18nlist.html
new file mode 100644
index 0000000..1df9aa5
--- /dev/null
+++ b/layouts/partials/i18nlist.html
@@ -0,0 +1,10 @@
+{{ if .IsTranslated }}
+
+{{ end }}
\ No newline at end of file
diff --git a/layouts/partials/menu-contextual.html b/layouts/partials/menu-contextual.html
new file mode 100644
index 0000000..6f93ab0
--- /dev/null
+++ b/layouts/partials/menu-contextual.html
@@ -0,0 +1,33 @@
+{{/*
+Use Hugo's native Table of contents feature. You must set `toc: true` in your parameters for this to show.
+https://gohugo.io/content-management/toc/
+*/}}
+
+{{- if .Params.toc -}}
+
+
What's in this {{ humanize .Type }}
+ {{ .TableOfContents }}
+
+{{- end -}}
+
+{{/*
+Use Hugo's native related content feature to pull in content that may have similar parameters, like tags. etc.
+https://gohugo.io/content-management/related/
+*/}}
+
+{{ $related := .Site.RegularPages.Related . | first 15 }}
+
+{{ with $related }}
+
+{{ end }}
\ No newline at end of file
diff --git a/layouts/partials/new-window-icon.html b/layouts/partials/new-window-icon.html
new file mode 100644
index 0000000..8f422ca
--- /dev/null
+++ b/layouts/partials/new-window-icon.html
@@ -0,0 +1,2 @@
+{{ $new_window_icon_size := "8px" }}
+{{ partial "svg/new-window.svg" (dict "size" $new_window_icon_size) }}
\ No newline at end of file
diff --git a/layouts/partials/page-header.html b/layouts/partials/page-header.html
new file mode 100644
index 0000000..68e6733
--- /dev/null
+++ b/layouts/partials/page-header.html
@@ -0,0 +1,5 @@
+
+
+ {{ partial "site-navigation.html" . }}
+
+
\ No newline at end of file
diff --git a/layouts/partials/site-favicon.html b/layouts/partials/site-favicon.html
new file mode 100644
index 0000000..ffb9642
--- /dev/null
+++ b/layouts/partials/site-favicon.html
@@ -0,0 +1,3 @@
+{{ if .Site.Params.favicon }}
+
+{{ end }}
\ No newline at end of file
diff --git a/layouts/partials/site-footer.html b/layouts/partials/site-footer.html
new file mode 100755
index 0000000..231b15d
--- /dev/null
+++ b/layouts/partials/site-footer.html
@@ -0,0 +1,12 @@
+
diff --git a/layouts/partials/site-header.html b/layouts/partials/site-header.html
new file mode 100755
index 0000000..e8b6cc4
--- /dev/null
+++ b/layouts/partials/site-header.html
@@ -0,0 +1,15 @@
+
+
\ No newline at end of file
diff --git a/layouts/post/list.html b/layouts/post/list.html
new file mode 100644
index 0000000..f41c6bd
--- /dev/null
+++ b/layouts/post/list.html
@@ -0,0 +1,23 @@
+{{ define "main" }}
+{{/*
+This template is the same as the default and is here to demonstrate that if you have a content directory called "post"
+you can create a layouts directory, just for that section.
+*/}}
+
+
+ {{ .Content }}
+
+
+ {{ template "_internal/pagination.html" . }}
+
+{{ end }}
\ No newline at end of file
diff --git a/layouts/post/summary.html b/layouts/post/summary.html
new file mode 100644
index 0000000..bbde4a7
--- /dev/null
+++ b/layouts/post/summary.html
@@ -0,0 +1,15 @@
+