forked from swcarpentry/sql-novice-survey
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'core' of github.com:swcarpentry/lesson-template into up…
…dating-from-template
- Loading branch information
Showing
33 changed files
with
20,478 additions
and
9,515 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ README.html | |
LAYOUT.html | ||
FAQ.html | ||
DESIGN.html | ||
CONTRIBUTING.html | ||
CONDUCT.html | ||
*~ | ||
*.pyc | ||
_site | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Contributor Code of Conduct | ||
|
||
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities. | ||
|
||
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion. | ||
|
||
Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, 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. 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. | ||
|
||
This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
Software Carpentry is an open source project, | ||
and we welcome contributions of all kinds: | ||
new lessons, | ||
fixes to existing material, | ||
bug reports, | ||
and reviews of proposed changes are all equally welcome. | ||
|
||
By contributing, | ||
you are agreeing that Software Carpentry may redistribute your work under | ||
[these licenses][license]. | ||
You also agree to abide by our | ||
[contributor code of conduct][conduct]. | ||
|
||
## Getting Started | ||
|
||
1. We use GitHub flow to manage changes, | ||
which is explained in the chapter [Contributing to a Project][pro-git-chapter] | ||
in Scott Chacon's book *Pro Git*. | ||
|
||
2. For our lessons, | ||
you should branch from and submit pull requests against the `gh-pages` branch. | ||
|
||
3. When editing lesson pages, you need only commit changes to the Markdown source files. | ||
|
||
4. If you're looking for things to work on, | ||
please see [the list of issues for this repository][lesson-template-issues], | ||
or for [our other lessons][swc-lessons]. | ||
Comments on issues and reviews of pull requests are equally welcome. | ||
|
||
## Other Resources | ||
|
||
1. This lesson is based on the template found at | ||
[https://github.com/swcarpentry/lesson-template](https://github.com/swcarpentry/lesson-template). | ||
That repository has instructions on formatting and previewing lessons. | ||
|
||
2. For a list of helpful commands run `make` in this directory. | ||
|
||
3. The [list of maintainers][swc-maintainers] | ||
on the [Software Carpentry website][swc-website] | ||
lists the people currently responsible for managing this repository. | ||
Feel free to contact them if you have any questions or languishing pull requests. | ||
|
||
[conduct]: CONDUCT.md | ||
[lesson-template-issues]: https://github.com/swcarpentry/lesson-template/issues | ||
[license]: LICENSE.md | ||
[pro-git-chapter]: http://git-scm.com/book/en/v2/GitHub-Contributing-to-a-Project | ||
[swc-lessons]: http://software-carpentry.org/lessons.html | ||
[swc-maintainers]: http://software-carpentry.org/lessons.html#maintainers | ||
[swc-website]: http://software-carpentry.org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<!-- Javascript placed at the end of the document so the pages load faster --> | ||
<script src="http://software-carpentry.org/v5/js/jquery-1.9.1.min.js"></script> | ||
<script src="http://software-carpentry.org/v5/js/bootstrap/bootstrap.min.js"></script> | ||
<script src="css/bootstrap/bootstrap-js/bootstrap.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | ||
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0"> | ||
|
||
$for(author-meta)$ | ||
<meta name="author" content="$author-meta$"> | ||
$endfor$ | ||
$if(date-meta)$ | ||
<meta name="date" content="$date-meta$"> | ||
$endif$ | ||
<title>$if(title-prefix)$$title-prefix$ - $endif$$pagetitle$</title> | ||
|
||
$for(css)$ | ||
<link rel="stylesheet" href="$css$" $if(html5)$$else$type="text/css" $endif$/> | ||
$endfor$ | ||
|
||
<script src="js/deckjs-custom.js"></script> | ||
<script> | ||
// TODO: finer filter on what is needed (vs profile-5) | ||
includedeck("css/swc-slides.css", { | ||
BEFOREINIT: function() { | ||
$$(".slide.auto li:not(li li):not(.notslide)").addClass("slide"); | ||
} | ||
}); | ||
</script> | ||
</head> | ||
<body> | ||
<div class="deck-container"> | ||
|
||
$if(omit-title)$ | ||
$else$ | ||
<div class="slide title-slide" data-container-class="no-status"> | ||
<h1 class="var-title"></h1> | ||
<img class="logo" src="img/software-carpentry-banner.png" alt="Software Carpentry"/> | ||
</div> | ||
$endif$ | ||
|
||
<!-- Begin slides. Just make elements with a class of slide. --> | ||
$body$ | ||
<!-- End slides. --> | ||
|
||
<!-- Begin extension snippets. Add or remove as needed. --> | ||
|
||
<!-- deck.navigation snippet --> | ||
<div aria-role="navigation"> | ||
<a href="#" class="deck-prev-link" title="Previous">←</a> | ||
<a href="#" class="deck-next-link" title="Next">→</a> | ||
</div> | ||
|
||
<!-- footer --> | ||
<p class="deck-status deck-progress-10"> <span class="deck-status-current"></span> / <span class="deck-status-total"></span> − <span class="var-title">will be replaced by the title</span></p> | ||
<!-- progress bar --> | ||
<div class="progress-bar" data-progress-size=":spe.bottom(0, 1) ; left: slide.left+'px' ; height: designRatio+'px'" data-progress="width: detail.p * slide.width" style="position: absolute;"> </div> | ||
|
||
<!-- End extension snippets. --> | ||
</div> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
span.subtitle { | ||
color: #030303; | ||
display: block; | ||
font-family: inherit; | ||
font-size: 31.5px; | ||
font-weight: bold; | ||
line-height: 40px; | ||
margin: 40px 0px 10px 0px; | ||
text-rendering: optimizelegibility; | ||
} |
Oops, something went wrong.