summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2025-12-21 21:34:02 -0330
committerSam Anthony <sam@samanthony.xyz>2025-12-21 21:34:02 -0330
commitad1bb9787eb2317571cd3d1bfcd5a8b22df4803f (patch)
tree9b5dba33f39458f9bec6824db59f26870251d521
downloadsamanthony.xyz-ad1bb9787eb2317571cd3d1bfcd5a8b22df4803f.zip
init hugov1.0.0
-rw-r--r--.gitignore2
-rw-r--r--archetypes/default.md5
-rw-r--r--hugo.toml4
-rw-r--r--themes/aoidh/archetypes/default.md5
-rw-r--r--themes/aoidh/assets/css/main.css22
-rw-r--r--themes/aoidh/assets/js/main.js2
-rw-r--r--themes/aoidh/hugo.toml24
-rw-r--r--themes/aoidh/layouts/_partials/footer.html1
-rw-r--r--themes/aoidh/layouts/_partials/head.html5
-rw-r--r--themes/aoidh/layouts/_partials/head/css.html9
-rw-r--r--themes/aoidh/layouts/_partials/head/js.html16
-rw-r--r--themes/aoidh/layouts/_partials/header.html2
-rw-r--r--themes/aoidh/layouts/_partials/menu.html51
-rw-r--r--themes/aoidh/layouts/_partials/terms.html23
-rw-r--r--themes/aoidh/layouts/baseof.html17
-rw-r--r--themes/aoidh/layouts/home.html7
-rw-r--r--themes/aoidh/layouts/page.html10
-rw-r--r--themes/aoidh/layouts/section.html8
-rw-r--r--themes/aoidh/layouts/taxonomy.html7
-rw-r--r--themes/aoidh/layouts/term.html7
-rw-r--r--themes/aoidh/static/favicon.icobin0 -> 15406 bytes
21 files changed, 227 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..c4b387a
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+.hugo_build.lock
+public/
diff --git a/archetypes/default.md b/archetypes/default.md
new file mode 100644
index 0000000..25b6752
--- /dev/null
+++ b/archetypes/default.md
@@ -0,0 +1,5 @@
++++
+date = '{{ .Date }}'
+draft = true
+title = '{{ replace .File.ContentBaseName "-" " " | title }}'
++++
diff --git a/hugo.toml b/hugo.toml
new file mode 100644
index 0000000..8327460
--- /dev/null
+++ b/hugo.toml
@@ -0,0 +1,4 @@
+baseURL = 'https://www.samanthony.xyz/'
+languageCode = 'en-us'
+title = "Sam Anthony's Webpage"
+theme = 'aoidh'
diff --git a/themes/aoidh/archetypes/default.md b/themes/aoidh/archetypes/default.md
new file mode 100644
index 0000000..25b6752
--- /dev/null
+++ b/themes/aoidh/archetypes/default.md
@@ -0,0 +1,5 @@
++++
+date = '{{ .Date }}'
+draft = true
+title = '{{ replace .File.ContentBaseName "-" " " | title }}'
++++
diff --git a/themes/aoidh/assets/css/main.css b/themes/aoidh/assets/css/main.css
new file mode 100644
index 0000000..166ade9
--- /dev/null
+++ b/themes/aoidh/assets/css/main.css
@@ -0,0 +1,22 @@
+body {
+ color: #222;
+ font-family: sans-serif;
+ line-height: 1.5;
+ margin: 1rem;
+ max-width: 768px;
+}
+
+header {
+ border-bottom: 1px solid #222;
+ margin-bottom: 1rem;
+}
+
+footer {
+ border-top: 1px solid #222;
+ margin-top: 1rem;
+}
+
+a {
+ color: #00e;
+ text-decoration: none;
+}
diff --git a/themes/aoidh/assets/js/main.js b/themes/aoidh/assets/js/main.js
new file mode 100644
index 0000000..1756afc
--- /dev/null
+++ b/themes/aoidh/assets/js/main.js
@@ -0,0 +1,2 @@
+console.log('This site was generated by Hugo.');
+console.log('Theme: Aoidh');
diff --git a/themes/aoidh/hugo.toml b/themes/aoidh/hugo.toml
new file mode 100644
index 0000000..5c26950
--- /dev/null
+++ b/themes/aoidh/hugo.toml
@@ -0,0 +1,24 @@
+baseURL = 'https://example.org/'
+languageCode = 'en-US'
+title = 'My New Hugo Site'
+
+[menus]
+ [[menus.main]]
+ name = 'Home'
+ pageRef = '/'
+ weight = 10
+
+ [[menus.main]]
+ name = 'Posts'
+ pageRef = '/posts'
+ weight = 20
+
+ [[menus.main]]
+ name = 'Tags'
+ pageRef = '/tags'
+ weight = 30
+
+[module]
+ [module.hugoVersion]
+ extended = false
+ min = '0.146.0'
diff --git a/themes/aoidh/layouts/_partials/footer.html b/themes/aoidh/layouts/_partials/footer.html
new file mode 100644
index 0000000..a7cd916
--- /dev/null
+++ b/themes/aoidh/layouts/_partials/footer.html
@@ -0,0 +1 @@
+<p>Copyright {{ now.Year }}. All rights reserved.</p>
diff --git a/themes/aoidh/layouts/_partials/head.html b/themes/aoidh/layouts/_partials/head.html
new file mode 100644
index 0000000..02c2240
--- /dev/null
+++ b/themes/aoidh/layouts/_partials/head.html
@@ -0,0 +1,5 @@
+<meta charset="utf-8">
+<meta name="viewport" content="width=device-width">
+<title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }}</title>
+{{ partialCached "head/css.html" . }}
+{{ partialCached "head/js.html" . }}
diff --git a/themes/aoidh/layouts/_partials/head/css.html b/themes/aoidh/layouts/_partials/head/css.html
new file mode 100644
index 0000000..d76d23a
--- /dev/null
+++ b/themes/aoidh/layouts/_partials/head/css.html
@@ -0,0 +1,9 @@
+{{- with resources.Get "css/main.css" }}
+ {{- if hugo.IsDevelopment }}
+ <link rel="stylesheet" href="{{ .RelPermalink }}">
+ {{- else }}
+ {{- with . | minify | fingerprint }}
+ <link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
+ {{- end }}
+ {{- end }}
+{{- end }}
diff --git a/themes/aoidh/layouts/_partials/head/js.html b/themes/aoidh/layouts/_partials/head/js.html
new file mode 100644
index 0000000..16ffbed
--- /dev/null
+++ b/themes/aoidh/layouts/_partials/head/js.html
@@ -0,0 +1,16 @@
+{{- with resources.Get "js/main.js" }}
+ {{- $opts := dict
+ "minify" (not hugo.IsDevelopment)
+ "sourceMap" (cond hugo.IsDevelopment "external" "")
+ "targetPath" "js/main.js"
+ }}
+ {{- with . | js.Build $opts }}
+ {{- if hugo.IsDevelopment }}
+ <script src="{{ .RelPermalink }}"></script>
+ {{- else }}
+ {{- with . | fingerprint }}
+ <script src="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous"></script>
+ {{- end }}
+ {{- end }}
+ {{- end }}
+{{- end }}
diff --git a/themes/aoidh/layouts/_partials/header.html b/themes/aoidh/layouts/_partials/header.html
new file mode 100644
index 0000000..7980a00
--- /dev/null
+++ b/themes/aoidh/layouts/_partials/header.html
@@ -0,0 +1,2 @@
+<h1>{{ site.Title }}</h1>
+{{ partial "menu.html" (dict "menuID" "main" "page" .) }}
diff --git a/themes/aoidh/layouts/_partials/menu.html b/themes/aoidh/layouts/_partials/menu.html
new file mode 100644
index 0000000..14245b5
--- /dev/null
+++ b/themes/aoidh/layouts/_partials/menu.html
@@ -0,0 +1,51 @@
+{{- /*
+Renders a menu for the given menu ID.
+
+@context {page} page The current page.
+@context {string} menuID The menu ID.
+
+@example: {{ partial "menu.html" (dict "menuID" "main" "page" .) }}
+*/}}
+
+{{- $page := .page }}
+{{- $menuID := .menuID }}
+
+{{- with index site.Menus $menuID }}
+ <nav>
+ <ul>
+ {{- partial "inline/menu/walk.html" (dict "page" $page "menuEntries" .) }}
+ </ul>
+ </nav>
+{{- end }}
+
+{{- define "_partials/inline/menu/walk.html" }}
+ {{- $page := .page }}
+ {{- range .menuEntries }}
+ {{- $attrs := dict "href" .URL }}
+ {{- if $page.IsMenuCurrent .Menu . }}
+ {{- $attrs = merge $attrs (dict "class" "active" "aria-current" "page") }}
+ {{- else if $page.HasMenuCurrent .Menu .}}
+ {{- $attrs = merge $attrs (dict "class" "ancestor" "aria-current" "true") }}
+ {{- end }}
+ {{- $name := .Name }}
+ {{- with .Identifier }}
+ {{- with T . }}
+ {{- $name = . }}
+ {{- end }}
+ {{- end }}
+ <li>
+ <a
+ {{- range $k, $v := $attrs }}
+ {{- with $v }}
+ {{- printf " %s=%q" $k $v | safeHTMLAttr }}
+ {{- end }}
+ {{- end -}}
+ >{{ $name }}</a>
+ {{- with .Children }}
+ <ul>
+ {{- partial "inline/menu/walk.html" (dict "page" $page "menuEntries" .) }}
+ </ul>
+ {{- end }}
+ </li>
+ {{- end }}
+{{- end }}
diff --git a/themes/aoidh/layouts/_partials/terms.html b/themes/aoidh/layouts/_partials/terms.html
new file mode 100644
index 0000000..8a6ebec
--- /dev/null
+++ b/themes/aoidh/layouts/_partials/terms.html
@@ -0,0 +1,23 @@
+{{- /*
+For a given taxonomy, renders a list of terms assigned to the page.
+
+@context {page} page The current page.
+@context {string} taxonomy The taxonomy.
+
+@example: {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
+*/}}
+
+{{- $page := .page }}
+{{- $taxonomy := .taxonomy }}
+
+{{- with $page.GetTerms $taxonomy }}
+ {{- $label := (index . 0).Parent.LinkTitle }}
+ <div>
+ <div>{{ $label }}:</div>
+ <ul>
+ {{- range . }}
+ <li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
+ {{- end }}
+ </ul>
+ </div>
+{{- end }}
diff --git a/themes/aoidh/layouts/baseof.html b/themes/aoidh/layouts/baseof.html
new file mode 100644
index 0000000..39dcbec
--- /dev/null
+++ b/themes/aoidh/layouts/baseof.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html lang="{{ site.Language.LanguageCode }}" dir="{{ or site.Language.LanguageDirection `ltr` }}">
+<head>
+ {{ partial "head.html" . }}
+</head>
+<body>
+ <header>
+ {{ partial "header.html" . }}
+ </header>
+ <main>
+ {{ block "main" . }}{{ end }}
+ </main>
+ <footer>
+ {{ partial "footer.html" . }}
+ </footer>
+</body>
+</html>
diff --git a/themes/aoidh/layouts/home.html b/themes/aoidh/layouts/home.html
new file mode 100644
index 0000000..0df6597
--- /dev/null
+++ b/themes/aoidh/layouts/home.html
@@ -0,0 +1,7 @@
+{{ define "main" }}
+ {{ .Content }}
+ {{ range site.RegularPages }}
+ <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
+ {{ .Summary }}
+ {{ end }}
+{{ end }}
diff --git a/themes/aoidh/layouts/page.html b/themes/aoidh/layouts/page.html
new file mode 100644
index 0000000..7e286c8
--- /dev/null
+++ b/themes/aoidh/layouts/page.html
@@ -0,0 +1,10 @@
+{{ define "main" }}
+ <h1>{{ .Title }}</h1>
+
+ {{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
+ {{ $dateHuman := .Date | time.Format ":date_long" }}
+ <time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
+
+ {{ .Content }}
+ {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
+{{ end }}
diff --git a/themes/aoidh/layouts/section.html b/themes/aoidh/layouts/section.html
new file mode 100644
index 0000000..50fc92d
--- /dev/null
+++ b/themes/aoidh/layouts/section.html
@@ -0,0 +1,8 @@
+{{ define "main" }}
+ <h1>{{ .Title }}</h1>
+ {{ .Content }}
+ {{ range .Pages }}
+ <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
+ {{ .Summary }}
+ {{ end }}
+{{ end }}
diff --git a/themes/aoidh/layouts/taxonomy.html b/themes/aoidh/layouts/taxonomy.html
new file mode 100644
index 0000000..c2e7875
--- /dev/null
+++ b/themes/aoidh/layouts/taxonomy.html
@@ -0,0 +1,7 @@
+{{ define "main" }}
+ <h1>{{ .Title }}</h1>
+ {{ .Content }}
+ {{ range .Pages }}
+ <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
+ {{ end }}
+{{ end }}
diff --git a/themes/aoidh/layouts/term.html b/themes/aoidh/layouts/term.html
new file mode 100644
index 0000000..c2e7875
--- /dev/null
+++ b/themes/aoidh/layouts/term.html
@@ -0,0 +1,7 @@
+{{ define "main" }}
+ <h1>{{ .Title }}</h1>
+ {{ .Content }}
+ {{ range .Pages }}
+ <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
+ {{ end }}
+{{ end }}
diff --git a/themes/aoidh/static/favicon.ico b/themes/aoidh/static/favicon.ico
new file mode 100644
index 0000000..67f8b77
--- /dev/null
+++ b/themes/aoidh/static/favicon.ico
Binary files differ