2 For some reason, the relative_root_path seems out of scope in this file, so we
3 need to re-assign it here
6 {% include base_path.html %}
9 Navigation bar for an episode.
12 {% include manual_episode_order.html %}
14 'previous_episode' and 'next_episodes' are defined in 'manual_episode_order.html'.
15 These replace 'page.previous' and 'page.next' objects, correspondingly.
19 <div class="col-xs-1">
20 <h3 class="text-left">
21 {% if previous_episode %}
22 <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>
24 <a href="{{ relative_root_path }}/"><span class="glyphicon glyphicon-menu-up" aria-hidden="true"></span><span class="sr-only">lesson home</span></a>
28 <div class="col-xs-10">
29 {% if include.episode_navbar_title %}
30 <h3 class="maintitle"><a href="{{ relative_root_path }}/">{{ site.title }}</a></h3>
33 <div class="col-xs-1">
34 <h3 class="text-right">
36 <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>
38 <a href="{{ relative_root_path }}/"><span class="glyphicon glyphicon-menu-up" aria-hidden="true"></span><span class="sr-only">lesson home</span></a>