diff --git a/themes/shockrah.xyz/layouts/contact/baseof.html b/themes/shockrah.xyz/layouts/contact/baseof.html new file mode 100644 index 0000000..e87b845 --- /dev/null +++ b/themes/shockrah.xyz/layouts/contact/baseof.html @@ -0,0 +1,16 @@ + + + {{- partial "head.html" . -}} + +
+ {{- partial "header.html" . -}} +
+
+ {{- block "main" . -}}{{- end -}} +
+
+
+ {{- partial "footer.html" . -}} + + + diff --git a/themes/shockrah.xyz/layouts/contact/single.html b/themes/shockrah.xyz/layouts/contact/single.html new file mode 100644 index 0000000..ece7162 --- /dev/null +++ b/themes/shockrah.xyz/layouts/contact/single.html @@ -0,0 +1,28 @@ +{{ define "main" }} +

{{ .Title }}

+{{ .Content }} + {{ range .Params.links }} + {{ $color := "#1f8dd6" }} + {{ if ne .target.color nil }} + {{ $color = .target.color }} + {{ end }} +
+ {{.target.name}} - {{.target.title}} +

{{.target.description}}

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