diff --git a/themes/gallo b/themes/gallo deleted file mode 160000 index eaa1325..0000000 --- a/themes/gallo +++ /dev/null @@ -1 +0,0 @@ -Subproject commit eaa1325807616e44dd68023781fbd22c4fb8d0b7 diff --git a/themes/gallo/layouts/404.html b/themes/gallo/layouts/404.html new file mode 100644 index 0000000..e69de29 diff --git a/themes/gallo/layouts/_default/baseof.html b/themes/gallo/layouts/_default/baseof.html new file mode 100644 index 0000000..be9c33b --- /dev/null +++ b/themes/gallo/layouts/_default/baseof.html @@ -0,0 +1,9 @@ + + + {{ partial "head.html" . }} + + + {{ partial "nav.html" . }} {{ partial "header.html" . }} {{ block "main" . + }}{{ end }} {{ partial "footer.html" . }} + + diff --git a/themes/gallo/layouts/_default/list.html b/themes/gallo/layouts/_default/list.html new file mode 100644 index 0000000..ed8f16c --- /dev/null +++ b/themes/gallo/layouts/_default/list.html @@ -0,0 +1,16 @@ +{{ define "main" }} + +

{{ .Title }}

+{{ range .Pages.ByPublishDate.Reverse }} +

+

{{ .Title }}

+ {{ partial "metadata.html" . }} + +

{{ .Summary }}

+
+

+{{ end }} + +{{ partial "footer.html" . }} + +{{ end }} \ No newline at end of file diff --git a/themes/gallo/layouts/_default/rss.xml b/themes/gallo/layouts/_default/rss.xml new file mode 100644 index 0000000..f8ce7b7 --- /dev/null +++ b/themes/gallo/layouts/_default/rss.xml @@ -0,0 +1,26 @@ + + + {{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }} + {{ .Permalink }} + Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }} + Hugo -- gohugo.io{{ with .Site.LanguageCode }} + {{.}}{{end}}{{ with .Site.Author.email }} + {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Author.email }} + {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Copyright }} + {{.}}{{end}}{{ if not .Date.IsZero }} + {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}{{ end }} + {{ with .OutputFormats.Get "RSS" }} + {{ printf "" .Permalink .MediaType | safeHTML }} + {{ end }} + {{ range .Pages }} + + {{ .Title }} + {{ .Permalink }} + {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }} + {{ with .Site.Author.email }}{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}} + {{ .Permalink }} + {{- .Content | html -}} + + {{ end }} + + \ No newline at end of file diff --git a/themes/gallo/layouts/_default/single.html b/themes/gallo/layouts/_default/single.html new file mode 100644 index 0000000..da34a9e --- /dev/null +++ b/themes/gallo/layouts/_default/single.html @@ -0,0 +1,6 @@ +{{ define "main" }} + +

{{ .Title }}

+{{ partial "metadata.html" . }} +

+{{ .Content }} {{ end }} diff --git a/themes/gallo/layouts/_default/terms.html b/themes/gallo/layouts/_default/terms.html new file mode 100644 index 0000000..7a74a5e --- /dev/null +++ b/themes/gallo/layouts/_default/terms.html @@ -0,0 +1,11 @@ +{{ define "main" }} + +

{{ .Title }}

+ +{{ range .Data.Terms.Alphabetical }} +

+ + {{ .Count }} {{ .Page.Title }} + +

+{{ end }} {{ partial "footer.html" . }} {{ end }} diff --git a/themes/gallo/layouts/index.html b/themes/gallo/layouts/index.html new file mode 100644 index 0000000..ae96c48 --- /dev/null +++ b/themes/gallo/layouts/index.html @@ -0,0 +1 @@ +{{ define "main" }} {{ end }} diff --git a/themes/gallo/layouts/partials/footer.html b/themes/gallo/layouts/partials/footer.html new file mode 100644 index 0000000..2805482 --- /dev/null +++ b/themes/gallo/layouts/partials/footer.html @@ -0,0 +1,18 @@ +
+
+
+ {{ range .Site.Menus.main }} + + {{ $text := print .Name | safeHTML }} {{ $text }} + + {{ end }} +
+
Social Media
+
+
+
+

© {{ now.Format "2006"}} {{ .Site.Params.authorName | markdownify }}

+
+
diff --git a/themes/gallo/layouts/partials/head.html b/themes/gallo/layouts/partials/head.html new file mode 100644 index 0000000..ba7990b --- /dev/null +++ b/themes/gallo/layouts/partials/head.html @@ -0,0 +1,18 @@ + + + + {{ if .Site.Params.googleAnalytics }} + + + {{ end }} + + + {{ $title := print .Site.Title " | " .Title }} + {{ if .IsHome }}{{ $title = .Site.Title }}{{ end }} + {{ $title }} + \ No newline at end of file diff --git a/themes/gallo/layouts/partials/header.html b/themes/gallo/layouts/partials/header.html new file mode 100644 index 0000000..535bd02 --- /dev/null +++ b/themes/gallo/layouts/partials/header.html @@ -0,0 +1,7 @@ +
+

+ {{ .Site.Title }} +

+
diff --git a/themes/gallo/layouts/partials/metadata.html b/themes/gallo/layouts/partials/metadata.html new file mode 100644 index 0000000..8e36d4e --- /dev/null +++ b/themes/gallo/layouts/partials/metadata.html @@ -0,0 +1,11 @@ +{{ $dateTime := .PublishDate.Format "2006-01-02" }} +{{ $dateFormat := .Site.Params.dateFormat | default "Jan 2, 2006" }} + +{{ partial "social.html" . }} +{{ with .Params.tags }} + +{{ range . }} +{{ $href := print (absURL "tags/") (urlize .) }} +{{ . }} +{{ end }} +{{ end }} \ No newline at end of file diff --git a/themes/gallo/layouts/partials/nav.html b/themes/gallo/layouts/partials/nav.html new file mode 100644 index 0000000..ebd66ff --- /dev/null +++ b/themes/gallo/layouts/partials/nav.html @@ -0,0 +1,7 @@ + diff --git a/themes/gallo/layouts/partials/social.html b/themes/gallo/layouts/partials/social.html new file mode 100644 index 0000000..27a5508 --- /dev/null +++ b/themes/gallo/layouts/partials/social.html @@ -0,0 +1,9 @@ + + + + + + + \ No newline at end of file diff --git a/themes/gallo/src/input.css b/themes/gallo/src/input.css new file mode 100644 index 0000000..b5c61c9 --- /dev/null +++ b/themes/gallo/src/input.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; diff --git a/themes/gallo/static/css/tailwind.min.css b/themes/gallo/static/css/tailwind.min.css new file mode 100644 index 0000000..ea6468b --- /dev/null +++ b/themes/gallo/static/css/tailwind.min.css @@ -0,0 +1 @@ +/*! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:initial;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:initial}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}*,::backdrop,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }.my-6{margin-top:1.5rem;margin-bottom:1.5rem}.my-16{margin-top:4rem;margin-bottom:4rem}.mx-16{margin-left:4rem;margin-right:4rem}.mx-20{margin-left:5rem;margin-right:5rem}.ml-8{margin-left:2rem}.ml-16{margin-left:4rem}.mb-8{margin-bottom:2rem}.block{display:block}.flex{display:flex}.h-full{height:100%}.h-auto{height:auto}.h-12{height:3rem}.h-8{height:2rem}.h-px{height:1px}.min-h-screen{min-height:100vh}.min-h-72{min-height:18rem}.min-h-96{min-height:24rem}.min-h-12{min-height:3rem}.w-full{width:100%}.w-1\/2{width:50%}.w-2\/3{width:66.666667%}.w-9\/12{width:75%}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.place-content-center{place-content:center}.content-center{align-content:center}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.gap-2{gap:.5rem}.place-self-start{place-self:start}.place-self-end{place-self:end}.place-self-center{place-self:center}.self-end{align-self:flex-end}.border-t{border-top-width:1px}.border-gray-600{--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.bg-gray-800{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.bg-slate-800{--tw-bg-opacity:1;background-color:rgb(30 41 59/var(--tw-bg-opacity))}.bg-slate-950{--tw-bg-opacity:1;background-color:rgb(2 6 23/var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-slate-500{--tw-bg-opacity:1;background-color:rgb(100 116 139/var(--tw-bg-opacity))}.bg-slate-600{--tw-bg-opacity:1;background-color:rgb(71 85 105/var(--tw-bg-opacity))}.bg-slate-700{--tw-bg-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity))}.bg-\[url\(\'\/img\/wide\.webp\'\)\]{background-image:url(/img/wide.webp)}.bg-contain{background-size:contain}.bg-auto{background-size:auto}.bg-cover{background-size:cover}.bg-center{background-position:50%}.fill-white{fill:#fff}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.px-20{padding-left:5rem;padding-right:5rem}.px-36{padding-left:9rem;padding-right:9rem}.px-8{padding-left:2rem;padding-right:2rem}.text-center{text-align:center}.text-3xl{font-size:1.875rem;line-height:2.25rem}.font-bold{font-weight:700}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))} \ No newline at end of file diff --git a/themes/gallo/static/img/gallo_welding_inverted.webp b/themes/gallo/static/img/gallo_welding_inverted.webp new file mode 100644 index 0000000..108c7e1 Binary files /dev/null and b/themes/gallo/static/img/gallo_welding_inverted.webp differ diff --git a/themes/gallo/static/img/lying-sculpture.webp b/themes/gallo/static/img/lying-sculpture.webp new file mode 100644 index 0000000..e3f3415 Binary files /dev/null and b/themes/gallo/static/img/lying-sculpture.webp differ diff --git a/themes/gallo/static/img/wide.webp b/themes/gallo/static/img/wide.webp new file mode 100644 index 0000000..fb4e409 Binary files /dev/null and b/themes/gallo/static/img/wide.webp differ