This repository contains the source files for the Current Findings website.
Website:
https://robertslab.github.io/current-findings/
Source repository:
https://github.com/RobertsLab/current-findings
Current Findings hosts open, non-peer-reviewed scientific reports, technical notes, exploratory analyses, field reports, dataset notes, and working manuscripts from Roberts Lab.
The goal is to make small but useful scientific efforts visible, reusable, and citable.
Create a new report from the helper script:
./new-report.sh report-slugExample:
./new-report.sh vibrio-eelgrass-musselsThis creates:
reports/vibrio-eelgrass-mussels/
├── index.qmd
├── references.bib
└── figures/
Edit index.qmd to add the report content.
You can also create a report manually:
mkdir -p reports/vibrio-eelgrass-mussels/figures
touch reports/vibrio-eelgrass-mussels/index.qmd
touch reports/vibrio-eelgrass-mussels/references.bibUse templates/report-template.qmd as the starting structure.
quarto renderquarto previewgit add .
git commit -m "Add new report"
git pushUnless explicitly stated, reports are not peer reviewed.
In the GitHub repository:
- Go to Settings.
- Go to Pages.
- Under Build and deployment, choose "Deploy from a branch."
- Choose branch
main. - Choose folder
/docs. - Save.
The site should then be available at:
https://robertslab.github.io/current-findings/
current-findings/
├── _quarto.yml
├── index.qmd
├── reports.qmd
├── about.qmd
├── styles.css
├── README.md
├── new-report.sh
├── reports/
├── templates/
└── docs/