diff --git a/layouts/404.html b/layouts/404.html index 884bc89..9686511 100644 --- a/layouts/404.html +++ b/layouts/404.html @@ -1,3 +1,3 @@ -{{ partial "head.html" . }} +{{ define "main" }}

Well. Looks like we can't find the page you were looking for. One of us (probably me) typed something wrong. If it was me, send me an email so I can fix it please.

-{{ partial "footer.html" . }} +{{ end }} diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 8a076b1..76f8f57 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -3,13 +3,10 @@ {{ end }} {{ define "main" }}
- {{- range first 10 .Data.Pages }} - + {{- range .Data.Pages }}
-

{{ .Title }}

- {{ .Plain | truncate 500 | htmlUnescape | safeHTML }} + {{ .Date.Format "2006-01-02" }} {{ .Title }}
- {{- end }}
{{ end }} diff --git a/layouts/music-therapy/baseof.html b/layouts/healing-music/baseof.html similarity index 100% rename from layouts/music-therapy/baseof.html rename to layouts/healing-music/baseof.html diff --git a/layouts/healing-music/list.html b/layouts/healing-music/list.html new file mode 100644 index 0000000..4773e03 --- /dev/null +++ b/layouts/healing-music/list.html @@ -0,0 +1,15 @@ +{{ define "title" }} + {{ .Title }} +{{ end }} +{{ define "main" }} +
+ {{ .Content }} +
+
+ {{- range .Data.Pages }} +
+ {{ .Title }} +
+ {{- end }} +
+{{ end }} diff --git a/layouts/music-therapy/single.html b/layouts/healing-music/single.html similarity index 100% rename from layouts/music-therapy/single.html rename to layouts/healing-music/single.html diff --git a/layouts/music-therapy/list.html b/layouts/music-therapy/list.html deleted file mode 100644 index b14bfb5..0000000 --- a/layouts/music-therapy/list.html +++ /dev/null @@ -1,17 +0,0 @@ -{{ define "title" }} - {{ .Title }} -{{ end }} -{{ define "main" }} -
- {{ .Content }} -
-
- {{- range first 10 .Data.Pages }} - -
-

{{ .Title }}

-
- - {{- end }} -
-{{ end }} diff --git a/static/css/style.css b/static/css/style.css index e313bd4..b7376c6 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -133,21 +133,21 @@ h4 { } #list { - display: flex; - flex-wrap: wrap; - justify-content: space-evenly; + /* display: flex; */ + /* flex-wrap: wrap; */ + /* justify-content: space-evenly; */ } .list-item{ - max-width: 25em; - margin: 1em; - padding: 1em; - border-width: 2px; - border-style: solid; - border-color: var(--accent); - border-radius: 20px; - /* box-shadow: 1em 1em var(--highlight); */ - color: var(--color); + /* max-width: 25em; */ + margin: .25em; + padding: .25em; + /* border-width: 2px; */ + /* border-style: solid; */ + /* border-color: var(--accent); */ + /* border-radius: 20px; */ + /* /\* box-shadow: 1em 1em var(--highlight); *\/ */ + /* color: var(--color); */ } .button {