diff --git a/.vscode/tasks.json b/.vscode/tasks.json index b68b3a3..9167a93 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -13,6 +13,16 @@ "--open" ], "problemMatcher": [] + }, + { + "label": "Launch development webserver (without drafts)", + "type": "shell", + "command": "zola", + "args": [ + "serve", + "--open" + ], + "problemMatcher": [] } ] } \ No newline at end of file diff --git a/content/blog/_index.md b/content/blog/_index.md index fd8afd6..2561230 100644 --- a/content/blog/_index.md +++ b/content/blog/_index.md @@ -1,10 +1,10 @@ --- -title: Blog +title: Web Log sort_by: date extra: section_embed_mode: blog_posts --- -## Blog posts +## My web log -I write about software, hardware, life, and school. ([RSS](/rss.xml)) +I write about software, hardware, life, and more. ([RSS](/rss.xml)) diff --git a/content/music/_index.md b/content/music/_index.md index 7814cbd..de09c99 100644 --- a/content/music/_index.md +++ b/content/music/_index.md @@ -1,27 +1,33 @@ --- title: Music +sort_by: date --- -# My musical journey +# My Music -- 2022: Began releasing music under my own name -- 2019: Produced multiple tracks with other students at [*Studio 225*](https://www.facebook.com/studio225beal/) -- 2016: Produced a full-length theatrical soundtrack for *Lester B. Pearson SFTA* -- 2016: Released 8 albums -- 2016: Released 5 albums -- 2015: Released 11 albums -- 2015: Formed [*RetryLife*](/music/retrylife), an electronic music collective & distributor -- 2015: Composed two orchestral pieces for [*Lester B. Pearson School for the Arts*](https://en.wikipedia.org/wiki/Lester_B._Pearson_School_for_the_Arts) -- 2013: Started playing upright bass -- 2012-2014: Competed in multiple Drum Solo competitions, accidentally meeting some of my highschool friends 7 years before becoming friends with them -- 2013: Formed *Killer Hamsters*, a metal-leaning rock band -- 2012: Formed *Lizard Ninjas*, a rock band -- 2011-2012: Played every variant of recorder I could get my hands on -- 2010: Formed *AMPED*, a rock band. I was drummer and occasional vocalist -- 2010: Started playing the drums -- 2008: Started playing the piano +- 2020-11-25: [Evan Pratten - *Channels*](https://open.spotify.com/track/4tDNc9IFvj62p7aYHa7vCc) (Single) +- 2020-11-25: [Evan Pratten - *Summer Tracks.*](https://open.spotify.com/album/3bcakhzNwyK40K0TowcT0m) (Single) -## Streaming platforms + + + + + diff --git a/content/music/evan-pratten/_index.md b/content/music/evan-pratten/_index.md new file mode 100644 index 0000000..cb0828b --- /dev/null +++ b/content/music/evan-pratten/_index.md @@ -0,0 +1,5 @@ +--- +title: Personal Music Projects +sort_by: date +--- + diff --git a/content/music/evan-pratten/channels.md b/content/music/evan-pratten/channels.md new file mode 100644 index 0000000..40aeef3 --- /dev/null +++ b/content/music/evan-pratten/channels.md @@ -0,0 +1,21 @@ +--- +layout: page +title: "Channels" +description: "By: Evan Pratten" +date: 2022-11-25 +tags: music +draft: false +extra: + icon: las la-music + excerpt: '"Channels" is a single by Evan Pratten, released on November 25, 2022.' +--- + +I just published a new song! + + + +*Channels* is available on most platforms. Notably: + +- [Spotify](https://open.spotify.com/track/4tDNc9IFvj62p7aYHa7vCc?si=a027b5bae9184df7) +- [Apple Music](https://music.apple.com/us/album/channels-single/1656473075) +- [YouTube](https://www.youtube.com/watch?v=fBNgbTAM95o) diff --git a/content/music/retrylife/_index.md b/content/music/retrylife/_index.md new file mode 100644 index 0000000..6e99882 --- /dev/null +++ b/content/music/retrylife/_index.md @@ -0,0 +1,4 @@ +--- +title: RetryLife +sort_by: date +--- diff --git a/content/music/retrylife.md b/content/music/retrylife/history.md similarity index 99% rename from content/music/retrylife.md rename to content/music/retrylife/history.md index 5222e15..95a802f 100644 --- a/content/music/retrylife.md +++ b/content/music/retrylife/history.md @@ -61,4 +61,4 @@ Near RetryLife's time of founding, Evan and Nathan also participated in an initi ## Project End -In late 2017, the members of RetryLife disbanded due to relocation. +In late 2017, the members of RetryLife disbanded due to relocation. \ No newline at end of file diff --git a/content/timeline/_index.md b/content/timeline/_index.md new file mode 100644 index 0000000..e12e774 --- /dev/null +++ b/content/timeline/_index.md @@ -0,0 +1,6 @@ +--- +title: Timeline +extra: + section_embed_mode: timeline +--- + diff --git a/sass/styles/typography.scss b/sass/styles/typography.scss index 5854f14..6f36a95 100644 --- a/sass/styles/typography.scss +++ b/sass/styles/typography.scss @@ -18,7 +18,7 @@ span { } a { text-decoration: none; - color: blue; + color: blue !important; &:visited { color: blue; @@ -51,3 +51,7 @@ body { margin-right: auto; } } + +.monospace { + font-variant-numeric: tabular-nums; +} diff --git a/templates/components/navbar.html b/templates/components/navbar.html index 8eeda6b..d4135c6 100644 --- a/templates/components/navbar.html +++ b/templates/components/navbar.html @@ -8,7 +8,7 @@ -
  • |
  • -
  • Contact
  • + {#
  • |
  • +
  • Contact
  • #}
    \ No newline at end of file diff --git a/templates/components/site-timeline.html b/templates/components/site-timeline.html new file mode 100644 index 0000000..fa26ebb --- /dev/null +++ b/templates/components/site-timeline.html @@ -0,0 +1,47 @@ +{# Build a list of pages to work with #} +{# {% set all_pages = [] %} +{% set all_pages = all_pages + %} #} +{% set blog_section = get_section(path="blog/_index.md") %} +{% set music_ewp_section = get_section(path="music/evan-pratten/_index.md") %} +{% set music_rtl_section = get_section(path="music/retrylife/_index.md") %} + +{# Combine pages #} +{% set all_pages = [] %} +{% set all_pages = all_pages | concat(with=blog_section.pages) %} +{% set all_pages = all_pages | concat(with=music_ewp_section.pages) %} +{% set all_pages = all_pages | concat(with=music_rtl_section.pages) %} + +{# Sort and group #} +{% set all_pages = all_pages | sort(attribute="date") | reverse %} +{% set map = all_pages | group_by(attribute="year") %} +{% set_global years = [] %} +{% for year, ignored in map %} +{% set_global years = years | concat(with=year) %} +{% endfor %} + +{# Iterate all pages #} +{% for year in years %} +{% set pages = map[year] %} +{# Per-year heading #} +

    {{year}}

    + +{% endfor %} \ No newline at end of file diff --git a/templates/section.html b/templates/section.html index d8a4084..3d7e9b0 100644 --- a/templates/section.html +++ b/templates/section.html @@ -37,8 +37,28 @@