diff --git a/content/logbook/2022-november.md b/content/logbook/2022-november.md deleted file mode 100644 index cb3be24..0000000 --- a/content/logbook/2022-november.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: November 2022 ---- - -- **Nov 4** - - Early afternoon: QSO with VA3ZEV (Dave) via the VE3RSB repeater diff --git a/content/microblog/2017-11-07-000.md b/content/microblog/2017-11-07-000.md new file mode 100644 index 0000000..6daaa87 --- /dev/null +++ b/content/microblog/2017-11-07-000.md @@ -0,0 +1,10 @@ +--- +title: Update from November 7, 2017 +date: 2017-11-07 +extra: + icon: las la-comment +--- + +Our class project yesterday. + + diff --git a/content/microblog/_index.md b/content/microblog/_index.md new file mode 100644 index 0000000..b411e21 --- /dev/null +++ b/content/microblog/_index.md @@ -0,0 +1,3 @@ +--- +title: Updates +--- diff --git a/content/network/plan.md b/content/network/plan.md deleted file mode 100644 index f25dc96..0000000 --- a/content/network/plan.md +++ /dev/null @@ -1,67 +0,0 @@ ---- -title: IP Addressing Plan -extra: - uses: [graphviz] ---- - - - -- `2602:faf5::/40` - - `2602:faf5::/48` Site - Cologix Toronto - - `2602:faf5:0:1::/64` Personal VPN - - `2602:faf5:0:ffff::/64` /64 announcement test - - - - - - - - - diff --git a/sass/styles/layout.scss b/sass/styles/layout.scss index 24fa056..b5bdfd5 100644 --- a/sass/styles/layout.scss +++ b/sass/styles/layout.scss @@ -2,6 +2,8 @@ & > .container { max-width: 800px; margin: auto !important; + padding-left: 1em; + padding-right: 1em; } } diff --git a/static/images/microblog/927939789311107072-DOC0OKwVQAAYH6R.jpg b/static/images/microblog/927939789311107072-DOC0OKwVQAAYH6R.jpg new file mode 100644 index 0000000..8f88b2e Binary files /dev/null and b/static/images/microblog/927939789311107072-DOC0OKwVQAAYH6R.jpg differ diff --git a/templates/components/site-timeline.html b/templates/components/site-timeline.html index 51978e9..a37dfb5 100644 --- a/templates/components/site-timeline.html +++ b/templates/components/site-timeline.html @@ -10,14 +10,16 @@ {% 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") %} -{% set photo_section = get_section(path="photography/_index.md") %} +{# {% set photo_section = get_section(path="photography/_index.md") %} #} +{% set microblog_section = get_section(path="microblog/_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) %} -{% set all_pages = all_pages | concat(with=photo_section.pages) %} +{# {% set all_pages = all_pages | concat(with=photo_section.pages) %} #} +{% set all_pages = all_pages | concat(with=microblog_section.pages) %} {# Sort and group #} {% set all_pages = all_pages | sort(attribute="date") | reverse %} @@ -32,9 +34,10 @@ {% set pages = map[year] %} {# Per-year heading #}
{{page.extra.excerpt}}
+ {% endif %} #} + + {# Handle page types #} + {% if page.path is starting_with("/music") %} + {{page.content | safe}} + {% elif page.path is starting_with("/blog") %} ++ {% if page.extra.excerpt %} + {{page.extra.excerpt}} + {% endif %} ++ Read More + {% elif page.path is starting_with("/microblog") %} + {{page.content | safe}} + {% endif %} + +