diff --git a/content/blog/_index.md b/content/blog/_index.md new file mode 100644 index 0000000..6c432cb --- /dev/null +++ b/content/blog/_index.md @@ -0,0 +1,3 @@ +--- +title: "Posts" +--- diff --git a/themes/vanilla/layouts/_default/list.html b/themes/vanilla/layouts/_default/list.html index e69de29..c85c6f4 100644 --- a/themes/vanilla/layouts/_default/list.html +++ b/themes/vanilla/layouts/_default/list.html @@ -0,0 +1,9 @@ +{{ define "main" }} +

{{ .Title }}

+ + +{{ end }} diff --git a/themes/vanilla/layouts/partials/header.html b/themes/vanilla/layouts/partials/header.html index 7e441fc..c2efba3 100644 --- a/themes/vanilla/layouts/partials/header.html +++ b/themes/vanilla/layouts/partials/header.html @@ -7,6 +7,6 @@ GitHub About Tags - Archive + All Posts diff --git a/themes/vanilla/layouts/tags/list.html b/themes/vanilla/layouts/tags/list.html new file mode 100644 index 0000000..780ae39 --- /dev/null +++ b/themes/vanilla/layouts/tags/list.html @@ -0,0 +1,9 @@ +{{ define "main" }} +

Tagged "{{ .Title }}"

+ + +{{ end }} diff --git a/themes/vanilla/layouts/tags/term.html b/themes/vanilla/layouts/tags/term.html new file mode 100644 index 0000000..809950b --- /dev/null +++ b/themes/vanilla/layouts/tags/term.html @@ -0,0 +1,10 @@ +{{ define "main" }} +

{{ .Title }}

+{{ .Content }} + + +{{ end }} diff --git a/themes/vanilla/layouts/tags/terms.html b/themes/vanilla/layouts/tags/terms.html new file mode 100644 index 0000000..a296da0 --- /dev/null +++ b/themes/vanilla/layouts/tags/terms.html @@ -0,0 +1,10 @@ +{{ define "main" }} +

{{ .Title }}

+Below is a list of all the tags ever used on this site. + + +{{ end }}