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

Merge pull request #122 from gvwilson/commenting-includes

Adding comments on purposes of include files
parents f5d8968e b357f4e7
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
{% comment %}
  General description of Software and Data Carpentry.
{% endcomment %}
<div class="row">
  <div class="col-md-2" align="center">
    <a href="{{ site.swc_site }}"><img src="{{ page.root }}/assets/img/swc-icon-blue.svg" alt="Software Carpentry logo" /></a>
@@ -23,5 +26,3 @@
    building on learners' existing knowledge to enable them to quickly apply skills learned to their own research.
  </div>
</div>

+3 −0
Original line number Diff line number Diff line
{% comment %}
  Display key points for an episode.
{% endcomment %}
<blockquote class="keypoints">
  <h2>Key Points</h2>
  <ul>
+3 −0
Original line number Diff line number Diff line
{% comment %}
  Javascript used in lesson and workshop pages.
{% endcomment %}
<script src="{{ page.root }}/assets/js/jquery.min.js"></script>
<script src="{{ page.root }}/assets/js/bootstrap.min.js"></script>
<script src="{{ page.root }}/assets/js/lesson.js"></script>
+3 −0
Original line number Diff line number Diff line
{% comment %}
  Footer for lesson pages.
{% endcomment %}
<footer>
  <div class="row">
    <div class="col-md-6" align="left">
+3 −0
Original line number Diff line number Diff line
{% comment %}
  Main title for lesson pages.
{% endcomment %}
<h1 class="maintitle"><a href="{{ page.root }}/">{{ site.title }}</a>{% if page.title %}: {{ page.title }}{% endif %}</h1>
Loading