diff options
| author | Xe Iaso <me@christine.website> | 2022-06-14 15:04:17 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-14 15:04:17 -0400 |
| commit | ad6fba4c79e8b5ab08e2f0db8bc4087f03151f7f (patch) | |
| tree | 9888fe24eb3ea35ea0f9b54af8723b4a000e6ad9 /src/signalboost.rs | |
| parent | 7541df778165b5a96da714256d011685b476abc0 (diff) | |
| download | xesite-ad6fba4c79e8b5ab08e2f0db8bc4087f03151f7f.tar.xz xesite-ad6fba4c79e8b5ab08e2f0db8bc4087f03151f7f.zip | |
Add salary transparency page (#492)
* Move dhall data and types into `/dhall` folder
* Reformat salary transparency data into Dhall
* Wire up the old salary transparency page with a custom element
* Wire up a new salary transparency page
* Expose raw data as JSON
* Make dhall types more portable
* Remove gallery from the navbar
* Make signal boost page point to the new data location
* Add salary transparency page to the footer of the site
* Add site update post for this
Signed-off-by: Xe <me@xeiaso.net>
Diffstat (limited to 'src/signalboost.rs')
| -rw-r--r-- | src/signalboost.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/signalboost.rs b/src/signalboost.rs index a57a976..3d1b534 100644 --- a/src/signalboost.rs +++ b/src/signalboost.rs @@ -16,7 +16,8 @@ mod tests { use color_eyre::eyre::Result; #[test] fn load() -> Result<()> { - let _people: Vec<super::Person> = serde_dhall::from_file("./signalboost.dhall").parse()?; + let _people: Vec<super::Person> = + serde_dhall::from_file("./dhall/signalboost.dhall").parse()?; Ok(()) } |
