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

Various fixes #18

Merged
merged 12 commits into from
May 6, 2024
62 changes: 62 additions & 0 deletions .github/_quarto.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
project:
type: website

website:
title: GitHub template for FAIR and open research data
favicon: android-chrome-512x512.png
open-graph: true
twitter-card: true
site-url: https://maehr.github.io/open-research-data-template/
repo-url: https://github.com/maehr/open-research-data-template/
issue-url: https://github.com/maehr/open-research-data-template/issues/new/choose
repo-actions: [edit, issue]
page-navigation: true
bread-crumbs: true
back-to-top-navigation: true
search:
show-item-context: true
type: overlay
navbar:
logo: android-chrome-512x512.png
logo-alt: ''
title: open-research-data-template
tools:
- icon: github
url: https://github.com/maehr/open-research-data-template/
left:
- text: Readme
href: index.qmd
- text: Report
href: report.md

sidebar:
contents:
- section: open-research-data-template
href: index.qmd
contents:
- text: Changelog
href: CHANGELOG.md
- text: Code of Conduct
href: CODE_OF_CONDUCT.md
- text: Contributing
href: CONTRIBUTING.md
- text: License (Data)
href: LICENSE-CCBY.md
- text: License (Code)
href: LICENSE-AGPL.md
- text: Security
href: SECURITY.md
- href: report.md
contents: project-management/*

format:
html:
toc: true
theme: cosmo
code-copy: true
code-overflow: wrap
css: styles.css

freeze: true

editor: visual
3 changes: 2 additions & 1 deletion .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ docs:
- favicon-16x16.png
- favicon-32x32.png
- favicon.ico
- LICENSE.md
- LICENSE-AGPL.md
- LICENSE-CCBY.md
- README.md
- SECURITY.md
- site.webmanifest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/quarto-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ jobs:
- name: Check out repository
uses: actions/checkout@v4

- name: Overwrite _quarto.yml
run: |
cp .github/_quarto.yml _quarto.yml
maehr marked this conversation as resolved.
Show resolved Hide resolved

- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
env:
Expand Down