-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_quarto.yml
95 lines (89 loc) · 2.39 KB
/
_quarto.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
project:
type: website
pre-render: scripts/on_render/gen_index.R
render:
- "*.qmd"
- "!tutorials/drafts/" #don't attempt to render the drafts folder
- "!tutorials/staff/" #don't attempt to render the staff folder
- "!workbooks/" # don't attempt to render the workbooks
# - "!tutorials/archive_autumn_2023/"
website:
title: R Training
navbar:
# Sussex Flint
background: "#003b49"
search: true
left:
- text: "Home"
file: index.qmd
- text: "Tutorials"
file: tutorials.qmd
- text: "Workshops"
file: workshops.qmd
- text: "Resources"
file: resources.qmd
right:
- href: https://canvas.sussex.ac.uk/courses/29761
text: "Canvas"
- text: "About"
file: about.qmd
sidebar:
- title: "Tutorials"
style: "docked"
# Sussex Cool Grey
# https://www.sussex.ac.uk/brand/designers/colour
background: "#d0d3d4"
contents:
- tutorials.qmd
- quick_ref.qmd
- section: "Current"
contents:
- auto: tutorials/docs/*
- section: "Archive (Autumn 2023)"
contents:
- auto: tutorials/archive_autumn_2023/*
- title: "Workshops"
style: "docked"
background: "#d0d3d4"
contents:
- workshops.qmd
- section: "Dissertations"
contents:
- auto: workshops/dissertations/*
- title: "Resources"
style: "docked"
background: "#d0d3d4"
contents:
- resources.qmd
- data_workbooks.qmd
- section: "FAQs"
contents:
- auto: resources/faqs/*
page-footer:
center: "© Jennifer Mankin 2024"
background: "#003b49"
format:
html:
theme:
light: [flatly, theme-flatly.scss]
# https://quarto.org/docs/output-formats/html-themes.html#theme-options
dark: [darkly, theme-darkly.scss]
css: styles.css
toc: true
toc-depth: 4
# This bastard caused the rendering issues - DO NOT DO THIS AGAIN
# embed-resources: true
code-overflow: wrap
code-block-bg: true
# Forces embed code blocks out of alignment
#code-block-border-left: "#be84a3"
df-print: paged
fig-align: center
## Can't get this to work but the default is fine I guess
# highlight-style:
# light: tomorrow
# dark: cobalt
editor: source
execute:
warning: false
message: false