Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add presentation section to docsite #106

Merged
merged 2 commits into from
Oct 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:
- name: Add index redirector to latest docs
run: |
cp docs/redirector.html pages/index.html
- name: Add media folder to latest docs
run: |
cp -r docs/src/media pages/media
- name: Deploy documentation
uses: JamesIves/github-pages-deploy-action@v4
with:
Expand Down
1 change: 1 addition & 0 deletions docs/presentations/2024-09-18-SBI2-Conference/poster.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ format:
footer-url: "https://github.com/WayScience/coSMicQC"
footer-emails: "https://www.waysciencelab.com"
footer-color: "ADA7FF"
output-file: "sbi2-2024-cosmicqc-poster.pdf"
citation:
doi: 10.5281/zenodo.13829960
---
Expand Down
1 change: 1 addition & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ caption: 'Contents:'
maxdepth: 3
---
examples
presentations
python-api
contributing
code_of_conduct
Expand Down
Binary file not shown.
10 changes: 10 additions & 0 deletions docs/src/presentations.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Presentations

```{toctree}
---
caption: "List of presentations"
maxdepth: 2
glob:
---
presentations/*
```
7 changes: 7 additions & 0 deletions docs/src/presentations/sbi2-2024.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# SBI2 Annual Confrerence 2024 Poster

We presented `coSMicQC` during the [SBI2 annual conference (2024)](https://sbi2.org/conference/) poster sessions.

See below for the [poster](https://wayscience.github.io/coSMicQC/media/sbi2-2024-cosmicqc-poster.pdf) or reference our Zenodo record here: [https://zenodo.org/records/13829960](https://zenodo.org/records/13829960)

<iframe src="https://wayscience.github.io/coSMicQC/media/sbi2-2024-cosmicqc-poster.pdf" width="100%" height="600px"></iframe>
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,8 @@ quarto preview \
"""
poster-render.shell = """
quarto render \
docs/presentations/2024-09-18-SBI2-Conference/poster.qmd \
--output-dir docs/presentations/2024-09-18-SBI2-Conference/
docs/presentations/2024-09-18-SBI2-Conference/poster.qmd
mkdir docs/src/media
mv docs/presentations/2024-09-18-SBI2-Conference/sbi2-2024-cosmicqc-poster.pdf \
docs/src/media
"""