Skip to content
Snippets Groups Projects
Commit 5256b283 authored by Trevor Bekolay's avatar Trevor Bekolay
Browse files

Initial version of shared files

parents
Branches
Tags
No related merge requests found
markdown : kramdown
kramdown :
entity_output : as_input # — is output as —
smart_quotes : [39, 39, 34, 34] # decimal for left/right single/double quotes
contact : "admin@software-carpentry.org"
github_url : "https://github.com/swcarpentry"
irc_url : "irc://moznet/sciencelab"
rss_url : "http://software-carpentry.org/feed.xml"
swc_prefix : "http://software-carpentry.org"
twitter_name : "@swcarpentry"
twitter_url : "https://twitter.com/swcarpentry"
<span id="github-ribbon"><a href="https://github.com/swcarpentry/bc">Fork me on GitHub</a></span>
<div class="banner">
<a href="http://software-carpentry.org" title="Software Carpentry">
<img alt="Software Carpentry banner" src="http://software-carpentry.org/v5/img/software-carpentry-banner.png" />
</a>
</div>
<div class="footer">
<a class="label swc-blue-bg" href="mailto:{{site.contact}}">Email</a>
<a class="label swc-blue-bg" href="{{site.twitter_url}}">Twitter</a>
<a class="label swc-blue-bg" href="{{site.rss_url}}">RSS</a>
<a class="label swc-blue-bg" href="{{site.github_url}}">GitHub</a>
<a class="label swc-blue-bg" href="{{site.irc_url}}">IRC</a>
<a class="label swc-blue-bg" href="/LICENSE.html">License</a>
<a class="bugreport label swc-blue-bg" href="mailto:{{site.contact}}?subject=bug%20in%20{{page.path}}">Bug Report</a>
</div>
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link href="http://software-carpentry.org/v5/css/bootstrap/bootstrap.css" rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="http://software-carpentry.org/v5/css/bootstrap/bootstrap-responsive.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="http://software-carpentry.org/v5/css/swc.css" />
<link rel="stylesheet" type="text/css" href="http://software-carpentry.org/v5/css/swc-bootstrap.css" />
<link rel="alternate" type="application/rss+xml" title="The Software Carpentry Blog" href="http://software-carpentry.org/feed.xml"/>
<meta charset="UTF-8" />
<meta http-equiv="last-modified" content="{{site.timestamp}}" />
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le 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>
---
---
<!DOCTYPE html>
<html>
<head>
{% if page.title %}
<title>{{ page.title }}</title>
{% endif %}
{% include header.html %}
<link rel="stylesheet" type="text/css" href="http://software-carpentry.org/v5/css/lesson.css" />
</head>
<body>
<div class="container">
{% include banner.html %}
<div class="row-fluid">
<div class="span10 offset1">
<!-- start content -->
{% if page.title %}
<h1>{{page.title}}</h1>
{% endif %}
{{content}}
<!-- end content -->
</div>
</div>
{% include footer.html %}
</div>
{% include javascript.html %}
</body>
</html>
---
---
<!DOCTYPE html>
<html>
<head>
{% if page.title %}
<title>{{ page.title }}</title>
{% endif %}
{% include header.html %}
<link rel="stylesheet" type="text/css" href="http://software-carpentry.org/v5/css/lesson.css" />
</head>
<body>
<div class="container">
{% include banner.html %}
<div class="row-fluid">
<div class="span10 offset1">
<!-- start content -->
{% if page.title %}
<h1>{{page.title}}</h1>
{% endif %}
{{content}}
<!-- end content -->
</div>
</div>
{% include footer.html %}
</div>
{% include javascript.html %}
</body>
</html>
This diff is collapsed.
---
---
<!DOCTYPE html>
<html>
<head>
{% if page.title %}
<title>{{ page.title }}</title>
{% endif %}
{% include header.html %}
<link rel="stylesheet" type="text/css" href="http://software-carpentry.org/v5/css/lesson.css" />
</head>
<body>
<div class="container">
{% include banner.html %}
<div class="row-fluid">
<div class="span10 offset1">
<!-- start content -->
{% if page.title %}
<h1>{{page.title}}</h1>
{% endif %}
{{content}}
<!-- end content -->
</div>
</div>
{% include footer.html %}
</div>
{% include javascript.html %}
</body>
</html>
#!/usr/bin/env bash
# build: Build the lesson site.
# Ensure we run from the lesson directory
cd "$( dirname "${BASH_SOURCE[0]}" )" && cd ..
# Run our checks first
tools/check
SITE="_site"
jekyll build -t -d $SITE
#!/usr/bin/env bash
# check: Ensure that proper formatting has been used.
# Ensure we run from the lesson directory
cd "$( dirname "${BASH_SOURCE[0]}" )" && cd ..
# Show all of the FIXMEs in the lessons content
grep -i -n FIXME ??-*.md
#!/usr/bin/env bash
# update: Get the latest versions of shared files
# Ensure we run from the lesson directory
cd "$( dirname "${BASH_SOURCE[0]}" )" && cd ..
git pull --rebase=false https://github.com/tbekolay/swc-shared.git master
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment