Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

One setup page #25

Merged
merged 10 commits into from
Dec 10, 2019
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
.sass-cache
__pycache__
_site
/Gemfile.lock
11 changes: 11 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
layout: page
title: "Contributor Code of Conduct"
---
As contributors and maintainers of this project,
we pledge to follow the [Carpentry Code of Conduct][coc].

Instances of abusive, harassing, or otherwise unacceptable behavior
may be reported by following our [reporting guidelines][coc-reporting].

{% include links.md %}
44 changes: 0 additions & 44 deletions CONDUCT.md

This file was deleted.

2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
source 'https://rubygems.org'
gem 'github-pages', group: :jekyll_plugins
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# Settings
MAKEFILES=Makefile $(wildcard *.mk)
JEKYLL=jekyll
JEKYLL=bundle exec jekyll
PARSER=bin/markdown_ast.rb
DST=_site

Expand Down
60 changes: 42 additions & 18 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ carpentry: "dc"
# Overall title for pages.
title: "Ecology Workshop Overview"

# Contact. This *must* include the protocol: if it's an email
# address, it must look like "mailto:[email protected]",
# or if it's a URL, "https://gitter.im/username/ProjectName".
contact: "mailto:[email protected]"
# Life cycle stage of the lesson
# possible values: "pre-alpha", "alpha", "beta", "stable"
life_cycle: "stable"


#------------------------------------------------------------
# Generic settings (should not need to change).
Expand All @@ -24,24 +24,34 @@ kind: "lesson"
# See https://help.github.com/articles/repository-metadata-on-github-pages/.
repository: <USERNAME>/<PROJECT>

# Email address, no mailto:
email: "[email protected]"


# Sites.
amy_site: "https://amy.software-carpentry.org/workshops"
amy_site: "https://amy.carpentries.org/workshops"
carpentries_github: "https://github.com/carpentries"
carpentries_pages: "https://carpentries.github.io"
carpentries_site: "https://carpentries.org/"
dc_site: "http://datacarpentry.org"
example_repo: "https://github.com/carpentries/lesson-example"
example_site: "https://carpentries.github.io/lesson-example"
lc_site: "https://librarycarpentry.org/"
swc_github: "https://github.com/swcarpentry"
swc_site: "https://software-carpentry.org"
swc_pages: "https://swcarpentry.github.io"
lc_site: "http://librarycarpentry.github.io/"
swc_site: "https://software-carpentry.org"
template_repo: "https://github.com/carpentries/styles"
example_repo: "https://github.com/carpentries/lesson-example"
example_site: "https://carpentries.github.io/lesson-example"
training_site: "https://carpentries.github.io/instructor-training"
workshop_repo: "https://github.com/carpentries/workshop-template"
workshop_site: "https://carpentries.github.io/workshop-template"
training_site: "https://carpentries.github.io/instructor-training"
cc_by_human: "https://creativecommons.org/licenses/by/4.0/"

# Surveys.
pre_survey: "https://www.surveymonkey.com/r/swc_pre_workshop_v1?workshop_id="
post_survey: "https://www.surveymonkey.com/r/swc_post_workshop_v1?workshop_id="
training_post_survey: "https://www.surveymonkey.com/r/post-instructor-training"
pre_survey: "https://carpentries.typeform.com/to/wi32rS?slug="
post_survey: "https://carpentries.typeform.com/to/UgVdRQ?slug="
instructor_pre_survey: "https://www.surveymonkey.com/r/instructor_training_pre_survey?workshop_id="
instructor_post_survey: "https://www.surveymonkey.com/r/instructor_training_post_survey?workshop_id="


# Start time in minutes (0 to be clock-independent, 540 to show a start at 09:00 am).
start_time: 0
Expand All @@ -50,24 +60,38 @@ start_time: 0
collections:
episodes:
output: true
permalink: /:path/
permalink: /:path/index.html
extras:
output: true
permalink: /:path/index.html

# Set the default layout for things in the episodes collection.
defaults:
- values:
root: ..
root: .
layout: page
- scope:
path: ""
type: episodes
values:
root: ..
layout: episode
- scope:
path: ""
type: extras
values:
root: ..
layout: page

# Files and directories that are not to be copied.
exclude:
- Makefile
- bin
- bin/
- .Rproj.user/

# Turn on built-in syntax highlighting.
highlighter: rouge


# Turn off built-in syntax highlighting.
highlighter: false
# remote theme
remote_theme: carpentries/carpentries-theme
6 changes: 0 additions & 6 deletions _extras/figures.md

This file was deleted.

1 change: 0 additions & 1 deletion _includes/all_figures.html

This file was deleted.

22 changes: 0 additions & 22 deletions _includes/all_keypoints.html

This file was deleted.

44 changes: 0 additions & 44 deletions _includes/carpentries.html

This file was deleted.

15 changes: 0 additions & 15 deletions _includes/episode_break.html

This file was deleted.

11 changes: 0 additions & 11 deletions _includes/episode_keypoints.html

This file was deleted.

29 changes: 0 additions & 29 deletions _includes/episode_navbar.html

This file was deleted.

36 changes: 0 additions & 36 deletions _includes/episode_overview.html

This file was deleted.

42 changes: 0 additions & 42 deletions _includes/episode_title.html

This file was deleted.

Loading