1
This commit is contained in:
Evan Pratten 2022-12-16 11:30:31 -05:00
parent db7f0948cf
commit 352e8ca75d
3 changed files with 18 additions and 0 deletions

View File

@ -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)

View File

@ -0,0 +1,4 @@
---
title: Software
sort_by: date
---

View File

@ -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 %}