aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--README.md3
-rw-r--r--config.yaml3
-rw-r--r--content/poetry/610poetry_feature/index.md7
-rw-r--r--content/poetry/_index.md5
-rw-r--r--content/poetry/noble_quills_feature/index.md8
-rw-r--r--content/poetry/thoughts_from_work/index.md13
-rw-r--r--layouts/_default/single.html12
-rw-r--r--layouts/partials/header.html2
8 files changed, 52 insertions, 1 deletions
diff --git a/README.md b/README.md
index a21b330..524194f 100644
--- a/README.md
+++ b/README.md
@@ -17,3 +17,6 @@ A site rewrite for <jpappel.xyz>
* [x] blog layout layouts/blogs/single.html
* [x] change card class names to something more sensible
* [x] add image support for cards
+* [x] add epsilon talk to toggle page
+* [ ] add poetry features
+* [ ] add page search
diff --git a/config.yaml b/config.yaml
index 3f49d42..2609515 100644
--- a/config.yaml
+++ b/config.yaml
@@ -13,3 +13,6 @@ menu:
- identifier: "blog"
name: "Blog"
url: "/blog"
+ - identifier: "poetry"
+ name: "Poetry"
+ url: "/poetry"
diff --git a/content/poetry/610poetry_feature/index.md b/content/poetry/610poetry_feature/index.md
new file mode 100644
index 0000000..9752bc6
--- /dev/null
+++ b/content/poetry/610poetry_feature/index.md
@@ -0,0 +1,7 @@
+---
+title: 610Poetry
+date: 2024-03-02T19:30:00-05:00
+draft: true
+---
+
+610Poetry
diff --git a/content/poetry/_index.md b/content/poetry/_index.md
new file mode 100644
index 0000000..a67c028
--- /dev/null
+++ b/content/poetry/_index.md
@@ -0,0 +1,5 @@
+---
+title: "Poetry"
+---
+
+Here are some recent poems of mine
diff --git a/content/poetry/noble_quills_feature/index.md b/content/poetry/noble_quills_feature/index.md
new file mode 100644
index 0000000..2ac599a
--- /dev/null
+++ b/content/poetry/noble_quills_feature/index.md
@@ -0,0 +1,8 @@
+---
+title: Noble Quills
+date: 2024-02-10T16:00:00-05:00
+draft: true
+---
+
+Noble Quills
+
diff --git a/content/poetry/thoughts_from_work/index.md b/content/poetry/thoughts_from_work/index.md
new file mode 100644
index 0000000..c5501ae
--- /dev/null
+++ b/content/poetry/thoughts_from_work/index.md
@@ -0,0 +1,13 @@
+---
+title: Thoughts From Work
+date: 2020-05-23T00:00:00-05:00
+draft: true
+summary: Moravian College Diamond Writing Competition Submission
+---
+
+My winning submission for the Moravian College 2019-2020 Diamond Writing prize.
+Since my submission, the contests has been renamed the Moravian University Writing at Moravian contest.
+The award winning poem from the submissions is *Masseuse*.
+
+[Award](/awards/Diamond_Writing_Prize.pdf)
+[Submission](/poetry/thoughts_from_work.pdf)
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
new file mode 100644
index 0000000..85f8b4a
--- /dev/null
+++ b/layouts/_default/single.html
@@ -0,0 +1,12 @@
+{{ define "header" }}
+ <h1>{{ .Title }}</h1>
+ <time datetime="{{ .Date }}">{{ .Date | time.Format ":date_full" }}</time>
+{{ end }}
+
+{{ define "main" }}
+ {{ .Content }}
+{{ end }}
+
+{{ define "footer" }}
+ {{ partial "meta-tag_nav.html" . }}
+{{ end }}
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 0128c2f..a4689ac 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -4,7 +4,7 @@
<li><a href="/projects">Projects</a></li>
<li><a href="/research">Research</a></li>
<li><a href="/utilities">Utilities</a></li>
+ <li><a href="/poetry">Poetry</a></li>
<li><a href="/blog">Blog</a></li>
</menu>
</nav>
-<!-- TODO -->