** Warning **
Issuing rollback() due to DESTROY without explicit disconnect() of DBD::mysql::db handle dbname=lxr_eic at /usr/local/share/lxr/lxr-2.3.7/lib/LXR/Common.pm line 1161, <GEN207> line 1.
Last-Modified: Fri, 15 May 2025 09:12:13 GMT
Content-Type: text/html; charset=utf-8
/master/tutorial-geometry-development-using-dd4hep/_includes/episode_navbar.html
File indexing completed on 2025-05-15 09:11:59
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 >