Skip to content
Merged
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
18 changes: 15 additions & 3 deletions template/_quarto.yml.jinja
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
project:
# TODO: change to extension name if using a custom extension
type: website
# Delete auto-generated files from `quartodoc`
post-render: rm -f docs/reference/*.qmd
Expand Down Expand Up @@ -72,9 +73,20 @@ metadata-files:
- docs/reference/_sidebar.yml

format:
{{ "seedcase-theme-html" if is_seedcase_project else "html" }}:
include-before-body:
- "docs/site-counter.html"
{% if is_seedcase_project -%}
seedcase-theme-html:
theme:
- brand
{%- else -%}
# TODO: Use Quarto extension if available
html:
theme:
# TODO: Choose a different theme if desired
- litera
{%- endif %}
# TODO: Uncomment if using the goatcounter website visitor counter
# include-before-body:
# - "includes/site-counter.html"

editor:
markdown:
Expand Down
Loading