Unverified Commit 3a981309 authored by Raniere Silva's avatar Raniere Silva Committed by GitHub
Browse files

Merge pull request #127 from rgaiacs/off-line-view

"Offline" Capable
parents cc9f0059 d5491970
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
---
layout: page
title: "Contributor Code of Conduct"
permalink: /conduct/
---
As contributors and maintainers of this project,
we pledge to respect all people who contribute through reporting issues,
@@ -32,13 +31,14 @@ or other unprofessional conduct.

Project maintainers have the right and responsibility to remove, edit, or reject
comments, commits, code, wiki edits, issues, and other contributions
that are not aligned to this Code of Conduct.
that are not aligned to our [Code of Conduct][coc].
Project maintainers who do not follow the Code of Conduct may be removed from the project team.

Instances of abusive, harassing, or otherwise unacceptable behavior
may be reported by opening an issue or contacting one or more of the project maintainers.
may be reported by following our [reporting guidelines][coc-reporting].

This Code of Conduct is adapted from
the [Contributor Covenant][contrib-covenant] Version 1.0.0.

- [Software and Data Carpentry Code of Conduct][coc]
- [Code of Conduct Reporting Guide][coc-reporting]

{% include links.md %}
+0 −1
Original line number Diff line number Diff line
---
layout: page
title: "Licenses"
permalink: /license/
---
## Instructional Material

+4 −4
Original line number Diff line number Diff line
@@ -65,9 +65,9 @@ MARKDOWN_SRC = \
  index.md \
  CONDUCT.md \
  setup.md \
  $(wildcard _episodes/*.md) \
  $(sort $(wildcard _episodes/*.md)) \
  reference.md \
  $(wildcard _extras/*.md) \
  $(sort $(wildcard _extras/*.md)) \
  LICENSE.md

# Generated lesson files in the order they appear in the navigation menu.
@@ -75,9 +75,9 @@ HTML_DST = \
  ${DST}/index.html \
  ${DST}/conduct/index.html \
  ${DST}/setup/index.html \
  $(patsubst _episodes/%.md,${DST}/%/index.html,$(wildcard _episodes/*.md)) \
  $(patsubst _episodes/%.md,${DST}/%/index.html,$(sort $(wildcard _episodes/*.md))) \
  ${DST}/reference/index.html \
  $(patsubst _extras/%.md,${DST}/%/index.html,$(wildcard _extras/*.md)) \
  $(patsubst _extras/%.md,${DST}/%/index.html,$(sort $(wildcard _extras/*.md))) \
  ${DST}/license/index.html

## lesson-md        : convert Rmarkdown files to markdown
+7 −2
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@ 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="

#------------------------------------------------------------
# Generic settings (should not need to change).
# Lesson Generic settings (should not need to change).
#------------------------------------------------------------

# What kind of thing is this ("workshop" or "lesson")?
@@ -50,9 +50,10 @@ 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:
@@ -64,6 +65,10 @@ defaults:
    values:
      layout: episode

#------------------------------------------------------------
# Jekyll Generic settings (should not need to change).
#------------------------------------------------------------

# Files and directories that are not to be copied.
exclude:
  - Makefile
+0 −1
Original line number Diff line number Diff line
---
layout: page
title: About
permalink: /about/
---
{% include carpentries.html %}
Loading