From 4aed6ea63ae93704b5d4cc07b528a0dd70a5d752 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 24 Mar 2024 14:41:32 -0500 Subject: initial commit; forked from https://github.com/Yukuro/hugo-theme-shell --- layouts/partials/footer.html | 0 layouts/partials/head.html | 7 ++++ layouts/partials/header.html | 5 +++ layouts/partials/mathjax.html | 13 ++++++++ layouts/partials/style.html | 43 +++++++++++++++++++++++++ layouts/partials/typeActivity.html | 57 ++++++++++++++++++++++++++++++++ layouts/partials/typeIndex.html | 66 ++++++++++++++++++++++++++++++++++++++ layouts/partials/typewriter.html | 14 ++++++++ 8 files changed, 205 insertions(+) create mode 100644 layouts/partials/footer.html create mode 100644 layouts/partials/head.html create mode 100644 layouts/partials/header.html create mode 100644 layouts/partials/mathjax.html create mode 100644 layouts/partials/style.html create mode 100644 layouts/partials/typeActivity.html create mode 100644 layouts/partials/typeIndex.html create mode 100644 layouts/partials/typewriter.html (limited to 'layouts/partials') diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..e69de29 diff --git a/layouts/partials/head.html b/layouts/partials/head.html new file mode 100644 index 0000000..0caae6c --- /dev/null +++ b/layouts/partials/head.html @@ -0,0 +1,7 @@ + + {{- if .IsHome }}{{ .Site.Title }}{{- else }}{{ .Title }}{{- end }} + + + + {{ partial "partials/style.html" . }} + \ No newline at end of file diff --git a/layouts/partials/header.html b/layouts/partials/header.html new file mode 100644 index 0000000..a1a20c5 --- /dev/null +++ b/layouts/partials/header.html @@ -0,0 +1,5 @@ +{{ if or ( eq .Site.Params.Terminal.terminalDelay 0 ) ( eq .Site.Params.Terminal.activityDelay 0 )}} + {{ if .Page.Params.math }} + {{ partial "mathjax.html" . }} + {{ end }} +{{ end }} \ No newline at end of file diff --git a/layouts/partials/mathjax.html b/layouts/partials/mathjax.html new file mode 100644 index 0000000..eb6315a --- /dev/null +++ b/layouts/partials/mathjax.html @@ -0,0 +1,13 @@ + + + diff --git a/layouts/partials/style.html b/layouts/partials/style.html new file mode 100644 index 0000000..d4ceb09 --- /dev/null +++ b/layouts/partials/style.html @@ -0,0 +1,43 @@ + + + diff --git a/layouts/partials/typeActivity.html b/layouts/partials/typeActivity.html new file mode 100644 index 0000000..911754f --- /dev/null +++ b/layouts/partials/typeActivity.html @@ -0,0 +1,57 @@ +
+
+ + \ No newline at end of file diff --git a/layouts/partials/typeIndex.html b/layouts/partials/typeIndex.html new file mode 100644 index 0000000..ab2526f --- /dev/null +++ b/layouts/partials/typeIndex.html @@ -0,0 +1,66 @@ +
+
+
+
+
+ + + \ No newline at end of file diff --git a/layouts/partials/typewriter.html b/layouts/partials/typewriter.html new file mode 100644 index 0000000..daab6ae --- /dev/null +++ b/layouts/partials/typewriter.html @@ -0,0 +1,14 @@ +
+ +{{- if eq .delay 0 }} + {{ .payload }} +{{ else }} + + +{{ end -}} -- cgit v1.2.3