Commit 4030b747 authored by Greg Wilson's avatar Greg Wilson Committed by GitHub
Browse files

Merge pull request #108 from gvwilson/library-carpentry

Starting to incorporate Library Carpentry materials
parents 60900b8f cfac0610
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

## Trademark

"Software Carpentry" an "Data Carpentry" and their respective logos
"Software Carpentry" and "Data Carpentry" and their respective logos
are registered trademarks of [NumFOCUS][numfocus].

[cc-by-human]: https://creativecommons.org/licenses/by/4.0/
+10 −3
Original line number Diff line number Diff line
@@ -3,8 +3,13 @@
    <div class="col-md-6" align="left">
      <h4>
	Copyright &copy; 2016
	{% if site.carpentry == "swc" %}<a href="{{ site.swc_site }}">Software Carpentry Foundation</a>{% endif %}
	{% if site.carpentry == "dc" %}<a href="{{ site.dc_site }}">Data Carpentry</a>{% endif %}
	{% if site.carpentry == "swc" %}
	<a href="{{ site.swc_site }}">Software Carpentry Foundation</a>
	{% elsif site.carpentry == "dc" %}
	<a href="{{ site.dc_site }}">Data Carpentry</a>
	{% elsif site.carpentry == "lc" %}
	<a href="{{ site.lc_site }}">Library Carpentry</a>
	{% endif %}
      </h4>
    </div>
    <div class="col-md-6" align="right">
@@ -13,7 +18,9 @@
	/
	<a href="{{ site.github.repository_url }}/blob/gh-pages/CONTRIBUTING.md">Contributing</a>
	/
	<a href="mailto:{{ site.email }}">Contact</a>
	<a href="{{ site.github.repository_url }}/blob/gh-pages/CITATION">Cite</a>
	/
	<a href="{{ site.contact }}">Contact</a>
      </h4>
    </div>
  </div>
+8 −0
Original line number Diff line number Diff line
@@ -17,6 +17,10 @@
      <a href="{{ site.dc_site }}" class="pull-left">
        <img class="navbar-logo" src="{{ page.root }}/assets/img/dc-icon-black.svg" alt="Data Carpentry logo" />
      </a>
      {% elsif page.carpentry == "lc" %}
      <a href="{{ site.lc_site }}" class="pull-left">
        <img class="navbar-logo" src="{{ page.root }}/assets/img/lc-icon-black.svg" alt="Library Carpentry logo" />
      </a>
      {% elsif site.carpentry == "swc" %}
      <a href="{{ site.swc_site }}" class="pull-left">
        <img class="navbar-logo" src="{{ page.root }}/assets/img/swc-icon-blue.svg" alt="Software Carpentry logo" />
@@ -25,6 +29,10 @@
      <a href="{{ site.dc_site }}" class="pull-left">
        <img class="navbar-logo" src="{{ page.root }}/assets/img/dc-icon-black.svg" alt="Data Carpentry logo" />
      </a>
      {% elsif site.carpentry == "lc" %}
      <a href="{{ site.lc_site }}" class="pull-left">
        <img class="navbar-logo" src="{{ page.root }}/assets/img/lc-icon-black.svg" alt="Library Carpentry logo" />
      </a>
      {% endif %}

      {% comment %} Always show link to home page. {% endcomment %}
+3 −2
Original line number Diff line number Diff line
@@ -14,9 +14,10 @@
    <link rel="stylesheet" type="text/css" href="{{ page.root }}/assets/css/lesson.css" />
    {% if site.carpentry == "swc" %}
    <link rel="shortcut icon" type="image/x-icon" href="/favicon-swc.ico" />
    {% endif %}
    {% if site.carpentry == "dc" %}
    {% elsif site.carpentry == "dc" %}
    <link rel="shortcut icon" type="image/x-icon" href="/favicon-dc.ico" />
    {% elsif site.carpentry == "lc" %}
    <link rel="shortcut icon" type="image/x-icon" href="/favicon-lc.ico" />
    {% endif %}
    <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
    <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
+3 −2
Original line number Diff line number Diff line
@@ -30,9 +30,10 @@
    <link rel="stylesheet" type="text/css" href="{{ page.root }}/assets/css/lesson.css" />
    {% if site.carpentry == "swc" %}
    <link rel="shortcut icon" type="image/x-icon" href="/favicon-swc.ico" />
    {% endif %}
    {% if site.carpentry == "dc" %}
    {% elsif site.carpentry == "dc" %}
    <link rel="shortcut icon" type="image/x-icon" href="/favicon-dc.ico" />
    {% elsif site.carpentry == "lc" %}
    <link rel="shortcut icon" type="image/x-icon" href="/favicon-lc.ico" />
    {% endif %}
    <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
    <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
Loading