Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-06-18 07:06:43

0001 {% comment %}
0002 For some reason, the relative_root_path seems out of scope in this file, so we
0003 need to re-assign it here
0004 {% endcomment %}
0005 
0006 {% include base_path.html %}
0007 
0008 {% comment %}
0009   Navigation bar for an episode.
0010 {% endcomment %}
0011 
0012 {% include manual_episode_order.html %}
0013 {% comment %}
0014     'previous_episode' and 'next_episodes' are defined in 'manual_episode_order.html'.
0015     These replace 'page.previous' and 'page.next' objects, correspondingly.
0016 {% endcomment %}
0017 
0018 <div class="row">
0019   <div class="col-xs-1">
0020     <h3 class="text-left">
0021       {% if previous_episode %}
0022       <a href="{{ relative_root_path }}{{ previous_episode.url }}"><span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span><span class="sr-only">previous episode</span></a>
0023       {% else %}
0024       <a href="{{ relative_root_path }}/"><span class="glyphicon glyphicon-menu-up" aria-hidden="true"></span><span class="sr-only">lesson home</span></a>
0025       {% endif %}
0026     </h3>
0027   </div>
0028   <div class="col-xs-10">
0029     {% if include.episode_navbar_title %}
0030     <h3 class="maintitle"><a href="{{ relative_root_path }}/">{{ site.title }}</a></h3>
0031     {% endif %}
0032   </div>
0033   <div class="col-xs-1">
0034     <h3 class="text-right">
0035       {% if next_episode %}
0036       <a href="{{ relative_root_path }}{{ next_episode.url }}"><span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span><span class="sr-only">next episode</span></a>
0037       {% else %}
0038       <a href="{{ relative_root_path }}/"><span class="glyphicon glyphicon-menu-up" aria-hidden="true"></span><span class="sr-only">lesson home</span></a>
0039       {% endif %}
0040     </h3>
0041   </div>
0042 </div>