diff --git a/themes/sukaato/layouts/categories/list.html b/themes/sukaato/layouts/categories/list.html new file mode 100644 index 0000000..713e500 --- /dev/null +++ b/themes/sukaato/layouts/categories/list.html @@ -0,0 +1,31 @@ +{{ define "main" }} +
+
+

{{ .Title }}

+ {{ with .Summary }} +

{{ . }}

+ {{ end }} +
+ {{ if ne .Params.image nil }} + {{ $path := print ".." .Params.image }} + {{ lower .Title }}_image + {{ else }} + @TODO: 404 image goes here + {{ end }} +
+ {{ with .Content }} +
+ {{ . }} +
+ {{ end }} +
+ {{ range .Paginator.Pages }} + +
+

{{ .LinkTitle }}

+

{{ .Summary }}

+
+
+ {{ end }}{{ template "_internal/pagination.html" . }} +
+{{ end }} diff --git a/themes/sukaato/layouts/categories/terms.html b/themes/sukaato/layouts/categories/terms.html new file mode 100644 index 0000000..1f99e16 --- /dev/null +++ b/themes/sukaato/layouts/categories/terms.html @@ -0,0 +1,24 @@ +{{ define "expo" }} +
+

{{ .Title }}

+

{{ .Content }}

+
+{{ end }} +{{ define "main" }} +
+ {{ range .Data.Pages }} + {{ if ne .Params.image nil }} + {{ $path := print "." .Params.image }} +
+ {{ else }} +
+ {{ end }} +

{{ .Title }}

+ + {{ with .Summary }} +

{{ . }}

+ {{ end }} +
+ {{ end }} +
+{{ end }}