diff --git a/content/software/2021-01-31-hambands.md b/content/software/2021-01-31-hambands.md new file mode 100644 index 0000000..c551687 --- /dev/null +++ b/content/software/2021-01-31-hambands.md @@ -0,0 +1,12 @@ +--- +title: HamBands - Rust Library +description: A small library for checking which amateur radio band a frequency belongs to +date: 2021-01-31 +extra: + icon: las la-toolbox + excerpt: A small library for checking which amateur radio band a frequency belongs to +--- + +- [GitHub](https://github.com/ewpratten/hambands) +- [Crates.io](https://crates.io/crates/hambands) +- [Documentation](https://docs.rs/hambands) diff --git a/content/software/_index.md b/content/software/_index.md new file mode 100644 index 0000000..50e5f9f --- /dev/null +++ b/content/software/_index.md @@ -0,0 +1,4 @@ +--- +title: Software +sort_by: date +--- diff --git a/templates/components/site-timeline.html b/templates/components/site-timeline.html index e2c900a..10a8fde 100644 --- a/templates/components/site-timeline.html +++ b/templates/components/site-timeline.html @@ -11,6 +11,7 @@ {% 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 software_section = get_section(path="software/_index.md") %} {# Combine pages #} {% set all_pages = [] %} @@ -18,6 +19,7 @@ {% 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=software_section.pages) %} {# Sort and group #} {% set all_pages = all_pages | sort(attribute="date") | reverse %}