Skip to content

Commit 1b4d57b

Browse files
committed
Add eScience Academy relevant links
1 parent 57eec32 commit 1b4d57b

File tree

1 file changed

+102
-0
lines changed

1 file changed

+102
-0
lines changed

_config.yml

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
#------------------------------------------------------------
2+
# Values for this lesson.
3+
#------------------------------------------------------------
4+
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)
10+
# ea: eScience Academy
11+
carpentry: "ea"
12+
13+
# Overall title for pages.
14+
title: "Lesson Title"
15+
16+
# Life cycle stage of the lesson
17+
# possible values: "pre-alpha", "alpha", "beta", "stable"
18+
life_cycle: "pre-alpha"
19+
20+
#------------------------------------------------------------
21+
# Generic settings (should not need to change).
22+
#------------------------------------------------------------
23+
24+
# What kind of thing is this ("workshop" or "lesson")?
25+
kind: "lesson"
26+
27+
# Magic to make URLs resolve both locally and on GitHub.
28+
# See https://help.github.com/articles/repository-metadata-on-github-pages/.
29+
# Please don't change it: <USERNAME>/<PROJECT> is correct.
30+
repository: <USERNAME>/<PROJECT>
31+
32+
# Email address, no mailto:
33+
34+
35+
# Sites.
36+
amy_site: "https://amy.carpentries.org/workshops"
37+
carpentries_github: "https://github.com/carpentries"
38+
carpentries_pages: "https://carpentries.github.io"
39+
carpentries_site: "https://carpentries.org/"
40+
dc_site: "https://datacarpentry.org"
41+
example_repo: "https://github.com/carpentries/lesson-example"
42+
example_site: "https://carpentries.github.io/lesson-example"
43+
lc_site: "https://librarycarpentry.org/"
44+
swc_github: "https://github.com/swcarpentry"
45+
swc_pages: "https://swcarpentry.github.io"
46+
swc_site: "https://software-carpentry.org"
47+
template_repo: "https://github.com/carpentries/styles"
48+
training_site: "https://carpentries.github.io/instructor-training"
49+
workshop_repo: "https://github.com/carpentries/workshop-template"
50+
workshop_site: "https://carpentries.github.io/workshop-template"
51+
cc_by_human: "https://creativecommons.org/licenses/by/4.0/"
52+
ea_github: "https://github.com/escience-academy/"
53+
ea_pages: "https://github.com/escience-academy/escience-academy.github.io"
54+
ea_site: "https://escience-academy.github.io"
55+
56+
# Surveys.
57+
pre_survey: "https://carpentries.typeform.com/to/wi32rS?slug="
58+
post_survey: "https://carpentries.typeform.com/to/UgVdRQ?slug="
59+
instructor_pre_survey: "https://www.surveymonkey.com/r/instructor_training_pre_survey?workshop_id="
60+
instructor_post_survey: "https://www.surveymonkey.com/r/instructor_training_post_survey?workshop_id="
61+
62+
63+
# Start time in minutes (0 to be clock-independent, 540 to show a start at 09:00 am).
64+
start_time: 0
65+
66+
# Specify that things in the episodes collection should be output.
67+
collections:
68+
episodes:
69+
output: true
70+
permalink: /:path/index.html
71+
extras:
72+
output: true
73+
permalink: /:path/index.html
74+
75+
# Set the default layout for things in the episodes collection.
76+
defaults:
77+
- values:
78+
root: .
79+
layout: page
80+
- scope:
81+
path: ""
82+
type: episodes
83+
values:
84+
root: ..
85+
layout: episode
86+
- scope:
87+
path: ""
88+
type: extras
89+
values:
90+
root: ..
91+
layout: page
92+
93+
# Files and directories that are not to be copied.
94+
exclude:
95+
- Makefile
96+
- bin/
97+
- .Rproj.user/
98+
- .vendor/
99+
- .docker-vendor/
100+
101+
# Turn on built-in syntax highlighting.
102+
highlighter: rouge

0 commit comments

Comments
 (0)