// SPDX-FileCopyrightText: 2025 Ethan Reece // // SPDX-License-Identifier: MIT #import "@preview/linguify:0.4.2": linguify #import "../../../base/lib.typ": item-heading #import "../../../base/months/lib.typ": August, July, June, Present #import "../locations/lib.typ": Dallas_TX #import "../roles/lib.typ": Contributor, Volunteer #let lang-data = toml("lang.toml") #let l(content) = linguify(content, from: lang-data) #let foodnotbombs-location = Dallas_TX #let foodnotbombs-name = l("foodnotbombs") #let foodnotbombs-role = Volunteer #let foodnotbombs-timeframe = [#July 2025 -- #Present] #let foodnotbombs( item-heading-above: 0em, item-heading-below: 0em, ) = item-heading( title: foodnotbombs-role, subtitle: foodnotbombs-name, timeframe: foodnotbombs-timeframe, location: foodnotbombs-location, condensed: true, above: item-heading-above, below: item-heading-below, ) #let openstreetmap-location = "openstreetmap.org/user/Sudoer777" #let openstreetmap-name = l("openstreetmap") #let openstreetmap-role = Contributor #let openstreetmap-timeframe = [#August 2024 -- #Present] #let openstreetmap( item-heading-above: 0em, item-heading-below: 0em, ) = item-heading( title: openstreetmap-role, subtitle: openstreetmap-name, timeframe: openstreetmap-timeframe, location: openstreetmap-location, condensed: true, above: item-heading-above, below: item-heading-below, ) #let sandwichsundays-location = Dallas_TX #let sandwichsundays-name = l("sandwichsundays") #let sandwichsundays-role = Volunteer #let sandwichsundays-timeframe = [#June 2025 -- #Present] #let sandwichsundays( item-heading-above: 0em, item-heading-below: 0em, ) = item-heading( title: sandwichsundays-role, subtitle: sandwichsundays-name, timeframe: sandwichsundays-timeframe, location: sandwichsundays-location, condensed: true, above: item-heading-above, below: item-heading-below, )