├── .github └── workflows │ ├── docs.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── boxes.typ ├── docs ├── .hugo_build.lock ├── archetypes │ └── default.md ├── assets │ └── normalize.css ├── content │ ├── _index.md │ ├── documentation │ │ ├── _index.md │ │ ├── boxes.md │ │ ├── layouts.md │ │ ├── themes.md │ │ └── tips_and_tricks.md │ ├── examples │ │ ├── customize_boxes │ │ │ ├── main.pdf │ │ │ ├── main.png │ │ │ └── main.typ │ │ ├── getting_started │ │ │ ├── main.pdf │ │ │ ├── main.png │ │ │ └── main.typ │ │ ├── title-box │ │ │ ├── main.pdf │ │ │ └── main.typ │ │ └── variable-width-columns │ │ │ ├── main.pdf │ │ │ ├── main.png │ │ │ └── main.typ │ └── showcase │ │ ├── 2023-10-23-bwHPC-symposium │ │ ├── UFR-Schriftzug-white.png │ │ ├── UFR-Siegel-white.png │ │ ├── cellular_raza.bib │ │ ├── fdm_logo.jpg │ │ ├── images │ │ │ ├── JonasPleyer-edited.jpeg │ │ │ ├── bacteria_cells_at_iter_0000088000.png │ │ │ ├── bacteria_population-3d-0000-cropped.png │ │ │ ├── bacteria_population-3d-0000-cropped.xcf │ │ │ ├── bacteria_population-3d-0000.png │ │ │ ├── cell_sorting_end.png │ │ │ ├── cell_sorting_start.png │ │ │ ├── cellular_raza_dark_mode.svg │ │ │ ├── free_vertex_model_end.png │ │ │ ├── github-mark-white.png │ │ │ ├── kidney_organoid_model-final.png │ │ │ ├── scaling_0.png │ │ │ └── scaling_1.png │ │ ├── index.md │ │ ├── main.pdf │ │ ├── main.png │ │ └── main.typ │ │ ├── 2024-10-22-pop-template │ │ ├── index.md │ │ ├── main.pdf │ │ ├── main.png │ │ └── main.typ │ │ ├── 2024-12-horizontal-3column │ │ ├── index.md │ │ ├── main.pdf │ │ ├── main.png │ │ └── main.typ │ │ ├── 2025-PSI │ │ ├── CsSnI3_calc_vs_pred_and_hist.svg │ │ ├── CsSnI3_disordered.png │ │ ├── brief.csl │ │ ├── convergence_analysis.pdf │ │ ├── convergence_analysis_Eg_only.svg │ │ ├── index.md │ │ ├── main.pdf │ │ ├── main.png │ │ ├── main.typ │ │ ├── marvel_white_on_transparent.png │ │ ├── pink-yellow.png │ │ ├── psi_scd_banner_white.png │ │ ├── references.bib │ │ ├── snf_white_on_transparent.png │ │ ├── speedup.svg │ │ ├── transferability_cssni3.svg │ │ ├── transferability_water.svg │ │ └── water_cls_calc_vs_pred_and_hist.svg │ │ └── _index.md ├── hugo.toml ├── layouts │ ├── documentation │ │ └── single.html │ ├── partials │ │ └── codeFromFile.html │ ├── shortcodes │ │ └── codeFromFile.html │ └── showcase │ │ ├── list.html │ │ └── single.html ├── static │ └── favicon.svg └── themes │ └── docs │ ├── LICENSE │ ├── README.md │ ├── archetypes │ └── default.md │ ├── assets │ ├── css │ │ └── main.css │ └── js │ │ └── main.js │ ├── hugo.toml │ ├── layouts │ ├── _default │ │ ├── baseof.html │ │ ├── home.html │ │ ├── list.html │ │ └── single.html │ ├── documentation │ │ └── single.html │ ├── partials │ │ ├── footer.html │ │ ├── head.html │ │ ├── head │ │ │ ├── css.html │ │ │ └── js.html │ │ ├── header.html │ │ ├── menu.html │ │ ├── menu_old.html │ │ ├── sidebar.html │ │ └── terms.html │ ├── shortcodes │ │ └── codeFromFile.html │ └── showcase │ │ ├── list.html │ │ └── single.html │ ├── static │ ├── arrow-menu.svg │ └── favicon.ico │ └── theme.toml ├── layouts.typ ├── lib.typ ├── release.py ├── templates └── pop-uni-fr-poster │ ├── Treron_vernans_male_-_Kent_Ridge_Park.jpg │ ├── bibliography.bib │ ├── main.typ │ ├── peace-dove.png │ ├── pop-thumbnail.png │ └── thumbnail.png ├── themes.typ ├── typst.toml └── update_version.sh /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | docs/public 2 | *.zip 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/README.md -------------------------------------------------------------------------------- /boxes.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/boxes.typ -------------------------------------------------------------------------------- /docs/.hugo_build.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/archetypes/default.md -------------------------------------------------------------------------------- /docs/assets/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/assets/normalize.css -------------------------------------------------------------------------------- /docs/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/_index.md -------------------------------------------------------------------------------- /docs/content/documentation/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/documentation/_index.md -------------------------------------------------------------------------------- /docs/content/documentation/boxes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/documentation/boxes.md -------------------------------------------------------------------------------- /docs/content/documentation/layouts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/documentation/layouts.md -------------------------------------------------------------------------------- /docs/content/documentation/themes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/documentation/themes.md -------------------------------------------------------------------------------- /docs/content/documentation/tips_and_tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/documentation/tips_and_tricks.md -------------------------------------------------------------------------------- /docs/content/examples/customize_boxes/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/examples/customize_boxes/main.pdf -------------------------------------------------------------------------------- /docs/content/examples/customize_boxes/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/examples/customize_boxes/main.png -------------------------------------------------------------------------------- /docs/content/examples/customize_boxes/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/examples/customize_boxes/main.typ -------------------------------------------------------------------------------- /docs/content/examples/getting_started/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/examples/getting_started/main.pdf -------------------------------------------------------------------------------- /docs/content/examples/getting_started/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/examples/getting_started/main.png -------------------------------------------------------------------------------- /docs/content/examples/getting_started/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/examples/getting_started/main.typ -------------------------------------------------------------------------------- /docs/content/examples/title-box/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/examples/title-box/main.pdf -------------------------------------------------------------------------------- /docs/content/examples/title-box/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/examples/title-box/main.typ -------------------------------------------------------------------------------- /docs/content/examples/variable-width-columns/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/examples/variable-width-columns/main.pdf -------------------------------------------------------------------------------- /docs/content/examples/variable-width-columns/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/examples/variable-width-columns/main.png -------------------------------------------------------------------------------- /docs/content/examples/variable-width-columns/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/examples/variable-width-columns/main.typ -------------------------------------------------------------------------------- /docs/content/showcase/2023-10-23-bwHPC-symposium/UFR-Schriftzug-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2023-10-23-bwHPC-symposium/UFR-Schriftzug-white.png -------------------------------------------------------------------------------- /docs/content/showcase/2023-10-23-bwHPC-symposium/UFR-Siegel-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2023-10-23-bwHPC-symposium/UFR-Siegel-white.png -------------------------------------------------------------------------------- /docs/content/showcase/2023-10-23-bwHPC-symposium/cellular_raza.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2023-10-23-bwHPC-symposium/cellular_raza.bib -------------------------------------------------------------------------------- /docs/content/showcase/2023-10-23-bwHPC-symposium/fdm_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2023-10-23-bwHPC-symposium/fdm_logo.jpg -------------------------------------------------------------------------------- /docs/content/showcase/2023-10-23-bwHPC-symposium/images/JonasPleyer-edited.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2023-10-23-bwHPC-symposium/images/JonasPleyer-edited.jpeg -------------------------------------------------------------------------------- /docs/content/showcase/2023-10-23-bwHPC-symposium/images/bacteria_cells_at_iter_0000088000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2023-10-23-bwHPC-symposium/images/bacteria_cells_at_iter_0000088000.png -------------------------------------------------------------------------------- /docs/content/showcase/2023-10-23-bwHPC-symposium/images/bacteria_population-3d-0000-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2023-10-23-bwHPC-symposium/images/bacteria_population-3d-0000-cropped.png -------------------------------------------------------------------------------- /docs/content/showcase/2023-10-23-bwHPC-symposium/images/bacteria_population-3d-0000-cropped.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2023-10-23-bwHPC-symposium/images/bacteria_population-3d-0000-cropped.xcf -------------------------------------------------------------------------------- /docs/content/showcase/2023-10-23-bwHPC-symposium/images/bacteria_population-3d-0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2023-10-23-bwHPC-symposium/images/bacteria_population-3d-0000.png -------------------------------------------------------------------------------- /docs/content/showcase/2023-10-23-bwHPC-symposium/images/cell_sorting_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2023-10-23-bwHPC-symposium/images/cell_sorting_end.png -------------------------------------------------------------------------------- /docs/content/showcase/2023-10-23-bwHPC-symposium/images/cell_sorting_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2023-10-23-bwHPC-symposium/images/cell_sorting_start.png -------------------------------------------------------------------------------- /docs/content/showcase/2023-10-23-bwHPC-symposium/images/cellular_raza_dark_mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2023-10-23-bwHPC-symposium/images/cellular_raza_dark_mode.svg -------------------------------------------------------------------------------- /docs/content/showcase/2023-10-23-bwHPC-symposium/images/free_vertex_model_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2023-10-23-bwHPC-symposium/images/free_vertex_model_end.png -------------------------------------------------------------------------------- /docs/content/showcase/2023-10-23-bwHPC-symposium/images/github-mark-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2023-10-23-bwHPC-symposium/images/github-mark-white.png -------------------------------------------------------------------------------- /docs/content/showcase/2023-10-23-bwHPC-symposium/images/kidney_organoid_model-final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2023-10-23-bwHPC-symposium/images/kidney_organoid_model-final.png -------------------------------------------------------------------------------- /docs/content/showcase/2023-10-23-bwHPC-symposium/images/scaling_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2023-10-23-bwHPC-symposium/images/scaling_0.png -------------------------------------------------------------------------------- /docs/content/showcase/2023-10-23-bwHPC-symposium/images/scaling_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2023-10-23-bwHPC-symposium/images/scaling_1.png -------------------------------------------------------------------------------- /docs/content/showcase/2023-10-23-bwHPC-symposium/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2023-10-23-bwHPC-symposium/index.md -------------------------------------------------------------------------------- /docs/content/showcase/2023-10-23-bwHPC-symposium/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2023-10-23-bwHPC-symposium/main.pdf -------------------------------------------------------------------------------- /docs/content/showcase/2023-10-23-bwHPC-symposium/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2023-10-23-bwHPC-symposium/main.png -------------------------------------------------------------------------------- /docs/content/showcase/2023-10-23-bwHPC-symposium/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2023-10-23-bwHPC-symposium/main.typ -------------------------------------------------------------------------------- /docs/content/showcase/2024-10-22-pop-template/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2024-10-22-pop-template/index.md -------------------------------------------------------------------------------- /docs/content/showcase/2024-10-22-pop-template/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2024-10-22-pop-template/main.pdf -------------------------------------------------------------------------------- /docs/content/showcase/2024-10-22-pop-template/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2024-10-22-pop-template/main.png -------------------------------------------------------------------------------- /docs/content/showcase/2024-10-22-pop-template/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2024-10-22-pop-template/main.typ -------------------------------------------------------------------------------- /docs/content/showcase/2024-12-horizontal-3column/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2024-12-horizontal-3column/index.md -------------------------------------------------------------------------------- /docs/content/showcase/2024-12-horizontal-3column/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2024-12-horizontal-3column/main.pdf -------------------------------------------------------------------------------- /docs/content/showcase/2024-12-horizontal-3column/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2024-12-horizontal-3column/main.png -------------------------------------------------------------------------------- /docs/content/showcase/2024-12-horizontal-3column/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2024-12-horizontal-3column/main.typ -------------------------------------------------------------------------------- /docs/content/showcase/2025-PSI/CsSnI3_calc_vs_pred_and_hist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2025-PSI/CsSnI3_calc_vs_pred_and_hist.svg -------------------------------------------------------------------------------- /docs/content/showcase/2025-PSI/CsSnI3_disordered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2025-PSI/CsSnI3_disordered.png -------------------------------------------------------------------------------- /docs/content/showcase/2025-PSI/brief.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2025-PSI/brief.csl -------------------------------------------------------------------------------- /docs/content/showcase/2025-PSI/convergence_analysis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2025-PSI/convergence_analysis.pdf -------------------------------------------------------------------------------- /docs/content/showcase/2025-PSI/convergence_analysis_Eg_only.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2025-PSI/convergence_analysis_Eg_only.svg -------------------------------------------------------------------------------- /docs/content/showcase/2025-PSI/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2025-PSI/index.md -------------------------------------------------------------------------------- /docs/content/showcase/2025-PSI/main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2025-PSI/main.pdf -------------------------------------------------------------------------------- /docs/content/showcase/2025-PSI/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2025-PSI/main.png -------------------------------------------------------------------------------- /docs/content/showcase/2025-PSI/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2025-PSI/main.typ -------------------------------------------------------------------------------- /docs/content/showcase/2025-PSI/marvel_white_on_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2025-PSI/marvel_white_on_transparent.png -------------------------------------------------------------------------------- /docs/content/showcase/2025-PSI/pink-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2025-PSI/pink-yellow.png -------------------------------------------------------------------------------- /docs/content/showcase/2025-PSI/psi_scd_banner_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2025-PSI/psi_scd_banner_white.png -------------------------------------------------------------------------------- /docs/content/showcase/2025-PSI/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2025-PSI/references.bib -------------------------------------------------------------------------------- /docs/content/showcase/2025-PSI/snf_white_on_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2025-PSI/snf_white_on_transparent.png -------------------------------------------------------------------------------- /docs/content/showcase/2025-PSI/speedup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2025-PSI/speedup.svg -------------------------------------------------------------------------------- /docs/content/showcase/2025-PSI/transferability_cssni3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2025-PSI/transferability_cssni3.svg -------------------------------------------------------------------------------- /docs/content/showcase/2025-PSI/transferability_water.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2025-PSI/transferability_water.svg -------------------------------------------------------------------------------- /docs/content/showcase/2025-PSI/water_cls_calc_vs_pred_and_hist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/2025-PSI/water_cls_calc_vs_pred_and_hist.svg -------------------------------------------------------------------------------- /docs/content/showcase/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/content/showcase/_index.md -------------------------------------------------------------------------------- /docs/hugo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/hugo.toml -------------------------------------------------------------------------------- /docs/layouts/documentation/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/layouts/documentation/single.html -------------------------------------------------------------------------------- /docs/layouts/partials/codeFromFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/layouts/partials/codeFromFile.html -------------------------------------------------------------------------------- /docs/layouts/shortcodes/codeFromFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/layouts/shortcodes/codeFromFile.html -------------------------------------------------------------------------------- /docs/layouts/showcase/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/layouts/showcase/list.html -------------------------------------------------------------------------------- /docs/layouts/showcase/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/layouts/showcase/single.html -------------------------------------------------------------------------------- /docs/static/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/static/favicon.svg -------------------------------------------------------------------------------- /docs/themes/docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/LICENSE -------------------------------------------------------------------------------- /docs/themes/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/README.md -------------------------------------------------------------------------------- /docs/themes/docs/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/archetypes/default.md -------------------------------------------------------------------------------- /docs/themes/docs/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/assets/css/main.css -------------------------------------------------------------------------------- /docs/themes/docs/assets/js/main.js: -------------------------------------------------------------------------------- 1 | console.log('This site was generated by Hugo.'); 2 | -------------------------------------------------------------------------------- /docs/themes/docs/hugo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/hugo.toml -------------------------------------------------------------------------------- /docs/themes/docs/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/layouts/_default/baseof.html -------------------------------------------------------------------------------- /docs/themes/docs/layouts/_default/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/layouts/_default/home.html -------------------------------------------------------------------------------- /docs/themes/docs/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/layouts/_default/list.html -------------------------------------------------------------------------------- /docs/themes/docs/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/layouts/_default/single.html -------------------------------------------------------------------------------- /docs/themes/docs/layouts/documentation/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/layouts/documentation/single.html -------------------------------------------------------------------------------- /docs/themes/docs/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/layouts/partials/footer.html -------------------------------------------------------------------------------- /docs/themes/docs/layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/layouts/partials/head.html -------------------------------------------------------------------------------- /docs/themes/docs/layouts/partials/head/css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/layouts/partials/head/css.html -------------------------------------------------------------------------------- /docs/themes/docs/layouts/partials/head/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/layouts/partials/head/js.html -------------------------------------------------------------------------------- /docs/themes/docs/layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/layouts/partials/header.html -------------------------------------------------------------------------------- /docs/themes/docs/layouts/partials/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/layouts/partials/menu.html -------------------------------------------------------------------------------- /docs/themes/docs/layouts/partials/menu_old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/layouts/partials/menu_old.html -------------------------------------------------------------------------------- /docs/themes/docs/layouts/partials/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/layouts/partials/sidebar.html -------------------------------------------------------------------------------- /docs/themes/docs/layouts/partials/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/layouts/partials/terms.html -------------------------------------------------------------------------------- /docs/themes/docs/layouts/shortcodes/codeFromFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/layouts/shortcodes/codeFromFile.html -------------------------------------------------------------------------------- /docs/themes/docs/layouts/showcase/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/layouts/showcase/list.html -------------------------------------------------------------------------------- /docs/themes/docs/layouts/showcase/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/layouts/showcase/single.html -------------------------------------------------------------------------------- /docs/themes/docs/static/arrow-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/static/arrow-menu.svg -------------------------------------------------------------------------------- /docs/themes/docs/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/static/favicon.ico -------------------------------------------------------------------------------- /docs/themes/docs/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/docs/themes/docs/theme.toml -------------------------------------------------------------------------------- /layouts.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/layouts.typ -------------------------------------------------------------------------------- /lib.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/lib.typ -------------------------------------------------------------------------------- /release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/release.py -------------------------------------------------------------------------------- /templates/pop-uni-fr-poster/Treron_vernans_male_-_Kent_Ridge_Park.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/templates/pop-uni-fr-poster/Treron_vernans_male_-_Kent_Ridge_Park.jpg -------------------------------------------------------------------------------- /templates/pop-uni-fr-poster/bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/templates/pop-uni-fr-poster/bibliography.bib -------------------------------------------------------------------------------- /templates/pop-uni-fr-poster/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/templates/pop-uni-fr-poster/main.typ -------------------------------------------------------------------------------- /templates/pop-uni-fr-poster/peace-dove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/templates/pop-uni-fr-poster/peace-dove.png -------------------------------------------------------------------------------- /templates/pop-uni-fr-poster/pop-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/templates/pop-uni-fr-poster/pop-thumbnail.png -------------------------------------------------------------------------------- /templates/pop-uni-fr-poster/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/templates/pop-uni-fr-poster/thumbnail.png -------------------------------------------------------------------------------- /themes.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/themes.typ -------------------------------------------------------------------------------- /typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/typst.toml -------------------------------------------------------------------------------- /update_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaspleyer/peace-of-posters/HEAD/update_version.sh --------------------------------------------------------------------------------