File indexing completed on 2025-01-18 10:18:35
0001 {% comment %}
0002 Footer for lesson pages.
0003 {% endcomment %}
0004
0005 {% include gh_variables.html %}
0006
0007 <footer>
0008 <div class="row">
0009 <div class="col-md-6 license" id="license-info" align="left">
0010 {% if site.carpentry == "swc" %}
0011 Licensed under <a href="{{ site.cc_by_human }}">CC-BY 4.0</a> 2018–{{ 'now' | date: "%Y" }}
0012 by <a href="{{ site.carpentries_site }}">The Carpentries</a>
0013 <br>
0014 Licensed under <a href="{{ site.cc_by_human }}">CC-BY 4.0</a> 2016–2018
0015 by <a href="{{ site.swc_site }}">Software Carpentry Foundation</a>
0016 {% elsif site.carpentry == "dc" %}
0017 Licensed under <a href="{{ site.cc_by_human }}">CC-BY 4.0</a> 2018–{{ 'now' | date: "%Y" }}
0018 by <a href="{{ site.carpentries_site }}">The Carpentries</a>
0019 <br>
0020 Licensed under <a href="{{ site.cc_by_human }}">CC-BY 4.0</a> 2016–2018
0021 by <a href="{{ site.dc_site }}">Data Carpentry</a>
0022 {% elsif site.carpentry == "lc" %}
0023 Licensed under <a href="{{ site.cc_by_human }}">CC-BY 4.0</a> 2016–{{ 'now' | date: "%Y" }}
0024 by <a href="{{ site.lc_site }}">Library Carpentry</a>
0025 {% elsif site.carpentry == "cp" %}
0026 Licensed under <a href="{{ site.cc_by_human }}">CC-BY 4.0</a> 2018–{{ 'now' | date: "%Y" }}
0027 by <a href="{{ site.carpentries_site }}">The Carpentries</a>
0028 {% endif %}
0029 </div>
0030 <div class="col-md-6 help-links" align="right">
0031 {% if site.life_cycle == 'transition-step-2' %}
0032 {% assign edit_url = "https://carpentries.github.io/workbench/contributor/beta.html?id=" | append: repo_url %}
0033 {% else %}
0034 {% assign edit_url = repo_url %}
0035 {% endif %}
0036 {% if page.source == "Rmd" %}
0037 <a href="{{edit_url}}/edit/{{ default_branch }}/{{page.path|replace: "_episodes", "_episodes_rmd" | replace: ".md", ".Rmd"}}" data-checker-ignore>Edit on GitHub</a>
0038 {% else %}
0039 <a href="{{edit_url}}/edit/{{ default_branch }}/{{page.path}}" data-checker-ignore>Edit on GitHub</a>
0040 {% endif %}
0041 /
0042 <a href="{{ repo_url }}/blob/{{ source_branch }}/CONTRIBUTING.md" data-checker-ignore>Contributing</a>
0043 /
0044 <a href="{{ repo_url }}/">Source</a>
0045 /
0046 <a href="{{ repo_url }}/blob/{{ source_branch }}/CITATION" data-checker-ignore>Cite</a>
0047 /
0048 <a href="mailto:{{ site.email }}">Contact</a>
0049 </div>
0050 </div>
0051 <div class="row">
0052 <div class="col-md-12" align="center">
0053 Using <a href="https://github.com/carpentries/styles/">The Carpentries style</a>
0054 version <a href="https://github.com/carpentries/styles/releases/tag/v9.5.3">9.5.3</a>.
0055 </div>
0056 </div>
0057 </footer>