diff --git a/src/blog/three-albums-february-2023.md b/src/blog/three-albums-february-2023.md new file mode 100644 index 0000000..7abce96 --- /dev/null +++ b/src/blog/three-albums-february-2023.md @@ -0,0 +1,5 @@ +--- +title: three albums - february 2023 +--- + +one month in and i've already thrown myself in the deep end \ No newline at end of file diff --git a/src/blog/three-albums-january-2022.md b/src/blog/three-albums-january-2023.md similarity index 97% rename from src/blog/three-albums-january-2022.md rename to src/blog/three-albums-january-2023.md index 9ea0fb1..9607d1d 100644 --- a/src/blog/three-albums-january-2022.md +++ b/src/blog/three-albums-january-2023.md @@ -1,5 +1,5 @@ --- -title: three albums - january 2022 +title: three albums - january 2023 --- ## 3. you always will be - dylan henner diff --git a/src/blog/three-albums-march-2023.md b/src/blog/three-albums-march-2023.md new file mode 100644 index 0000000..f306253 --- /dev/null +++ b/src/blog/three-albums-march-2023.md @@ -0,0 +1,3 @@ +--- +title: three albums - january 2023 +--- diff --git a/src/css/styles.css b/src/css/styles.css index 30c552b..cd7c843 100644 --- a/src/css/styles.css +++ b/src/css/styles.css @@ -155,6 +155,11 @@ aside { } +article>p { + margin-top: 0; + margin-bottom: 0; +} + /* body > footer { margin-top: 4rem; padding: 2rem 1rem 1.5rem 1rem; diff --git a/src/pages.md b/src/pages.md new file mode 100644 index 0000000..a740bd1 --- /dev/null +++ b/src/pages.md @@ -0,0 +1,17 @@ +--- +layout: layout/base.njk +title: pages +--- + +{% if collections.blog.length > 0 %} +blog posts +{% endif %} +{% for post in collections.blog | reverse %} + \- [{{ post.data.title }}](/blog/{{ post.data.page.fileSlug }}) +{% endfor %} +{% if collections.music.length > 0 %} +music +{% endif %} +{% for post in collections.music | reverse %} + \- [{{ post.data.title }}]({{ post.data.page.fileSlug }}) +{% endfor %} \ No newline at end of file