-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
150 lines (148 loc) · 5.08 KB
/
astro.config.mjs
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
// @ts-check
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
// https://astro.build/config
export default defineConfig({
site: "https://clintonsteiner.com",
integrations: [
starlight({
title: "Half Stack Python",
editLink: {
baseUrl: "https://github.com/clintonsteiner/blog/edit/master/",
},
social: {
github: "https://github.com/clintonsteiner/blog",
linkedin: "https://www.linkedin.com/in/clintonsteiner/",
},
logo: {
src: "./src/assets/logo.png",
},
sidebar: [
{
label: "Programming",
collapsed: true,
autogenerate: { directory: "programming" },
},
{
label: "Resonance Textbook",
collapsed: true,
items: [
{ label: "Textbook Chapters", link: "resonance" },
{
label: "Resonance V7 Textbook",
link: "/resonances/resonance-v7.pdf",
},
{
label: "Appendix",
collapsed: true,
items: [
{
label: "A1: Definition of Terms",
link: "/resonances/appendix/Appendices_Definition_of_Terms.pdf",
},
{
label: "A2: Instruments of the Orchestra",
link: "/resonances/appendix/Appendices_Instruments_of_the_Orchestra.pdf",
},
{
label: "A3: Western Art Music",
link: "/resonances/appendix/Appendices_Western_Art_Music.pdf",
},
],
},
{
label: "Unit 1: Music as a Field of Practice and Study",
collapsed: true,
items: [
{
label: "Chapter 1.1: Music in Human Life",
link: "/resonances/unit1/Unit1_Chapter1_Music_in_Human_Life.pdf",
},
{
label: "Chapter 1.2: The Elements of Music",
link: "/resonances/unit1/Unit1_Chapter2_The_Elements_of_Music.pdf",
},
],
},
{
label: "Unit 2: Music for Storytelling",
collapsed: true,
items: [
{
label: "Chapter 2.3: Music and Characterization",
link: "/resonances/unit2/Unit2_Chapter3_Music_and_Characterization.pdf",
},
{
label: "Chapter 2.4: Sung and Danced Drama",
link: "/resonances/unit2/Unit2_Chapter4_Sung_and_Danced_Drama.pdf",
},
{
label: "Chapter 2.5: Song",
link: "/resonances/unit2/Unit2_Chapter5_Song.pdf",
},
{
label: "Chapter 2.6: Stories without Words: Introduction",
link: "/resonances/unit2/Unit2_Chapter6_Stories_without_Words_Introduction.pdf",
},
],
},
{
label: "Unit 3: Music in Context",
collapsed: true,
items: [
{
label:
"Chapter 3.7: Listening at Public Concerts: Introduction",
link: "/resonances/unit3/Unit3_Chapter7_Listening_at_Public_Concerts_Introduction.pdf",
},
{
label:
"Chapter 3.8: Listening at Home and at Court: Introduction",
link: "/resonances/unit3/Unit3_Chapter8_Listening_at_Home_and_at_Court_Introduction.pdf",
},
],
},
{
label: "Unit 4: Music for Political Expression",
collapsed: true,
items: [
{
label: "Chapter 4.9: National Identity",
link: "/resonances/unit4/Unit4_Chapter9_National_Identity.pdf",
},
{
label: "Chapter 4.10: Support and Protest",
link: "/resonances/unit4/Unit4_Chapter10_Support_and_Protest.pdf",
},
],
},
{
label: "Unit 5: Functional Music",
collapsed: true,
items: [
{
label: "Chapter 5.11: Music for Spiritual Expression",
link: "/resonances/unit5/Unit5_Chapter11_Music_for_Spiritual_Expression.pdf",
},
{
label: "Chapter 5.12: Music for Moving",
link: "/resonances/unit5/Unit5_Chapter12_Music_for_Moving.pdf",
},
],
},
{
label: "Unit 6: Evaluating Music",
collapsed: true,
items: [
{
label: "Chapter 6.13: What is Good Music?",
link: "/resonances/unit6/Unit6_Chapter13_What_is_Good_Music.pdf",
},
],
},
],
},
],
}),
],
});