2
2
# Values for this lesson.
3
3
# ------------------------------------------------------------
4
4
5
- # Which carpentry is this ("swc" or "dc")?
5
+ # Which carpentry is this ("swc", "dc", "lc", or "cp")?
6
+ # swc: Software Carpentry
7
+ # dc: Data Carpentry
8
+ # lc: Library Carpentry
9
+ # cp: Carpentries (to use for instructor traning for instance)
6
10
carpentry : " swc"
7
11
8
12
# Overall title for pages.
9
13
title : " The Unix Shell"
10
14
11
- # Contact email address.
12
-
13
15
14
16
# ------------------------------------------------------------
15
17
# Generic settings (should not need to change).
@@ -20,26 +22,35 @@ kind: "lesson"
20
22
21
23
# Magic to make URLs resolve both locally and on GitHub.
22
24
# See https://help.github.com/articles/repository-metadata-on-github-pages/.
25
+ # Please don't change it: <USERNAME>/<PROJECT> is correct.
23
26
repository : <USERNAME>/<PROJECT>
24
27
28
+ # Email address, no mailto:
29
+
30
+
25
31
# Sites.
26
32
amy_site : " https://amy.software-carpentry.org/workshops"
33
+ carpentries_github : " https://github.com/carpentries"
34
+ carpentries_pages : " https://carpentries.github.io"
35
+ carpentries_site : " https://carpentries.org/"
27
36
dc_site : " http://datacarpentry.org"
37
+ example_repo : " https://github.com/carpentries/lesson-example"
38
+ example_site : " https://carpentries.github.io/lesson-example"
39
+ lc_site : " https://librarycarpentry.github.io/"
28
40
swc_github : " https://github.com/swcarpentry"
29
- swc_site : " https://software-carpentry.org"
30
41
swc_pages : " https://swcarpentry.github.io"
42
+ swc_site : " https://software-carpentry.org"
31
43
template_repo : " https://github.com/carpentries/styles"
32
- example_repo : " https://github.com/carpentries/lesson-example"
33
- example_site : " https://carpentries.github.io/lesson-example"
44
+ training_site : " https://carpentries.github.io/instructor-training"
34
45
workshop_repo : " https://github.com/carpentries/workshop-template"
35
46
workshop_site : " https://carpentries.github.io/workshop-template"
36
- training_site : " https://carpentries.github.io/instructor-training"
37
47
38
48
# Surveys.
39
49
pre_survey : " https://www.surveymonkey.com/r/swc_pre_workshop_v1?workshop_id="
40
50
post_survey : " https://www.surveymonkey.com/r/swc_post_workshop_v1?workshop_id="
51
+ training_post_survey : " https://www.surveymonkey.com/r/post-instructor-training"
41
52
42
- # Start time in minutes (0 to be clock-independent, 540 to show a start at 09:00 am)
53
+ # Start time in minutes (0 to be clock-independent, 540 to show a start at 09:00 am).
43
54
start_time : 0
44
55
45
56
# Specify that things in the episodes collection should be output.
@@ -54,17 +65,26 @@ collections:
54
65
# Set the default layout for things in the episodes collection.
55
66
defaults :
56
67
- values :
57
- root : ..
68
+ root : .
69
+ layout : page
58
70
- scope :
59
71
path : " "
60
72
type : episodes
61
73
values :
74
+ root : ..
62
75
layout : episode
76
+ - scope :
77
+ path : " "
78
+ type : extras
79
+ values :
80
+ root : ..
81
+ layout : page
63
82
64
83
# Files and directories that are not to be copied.
65
84
exclude :
66
85
- Makefile
67
- - bin
86
+ - bin/
87
+ - .Rproj.user/
68
88
69
- # Turn off built-in syntax highlighting.
89
+ # Turn on built-in syntax highlighting.
70
90
highlighter : rouge
0 commit comments