Alexander Afanasyev | 508269a | 2012-07-28 13:59:54 -0700 | [diff] [blame] | 1 | {# |
| 2 | ns-3/layout.html |
| 3 | ~~~~~~~~~~~~~~~~~~~ |
| 4 | |
| 5 | Sphinx layout template for ns-3. |
| 6 | |
| 7 | :copyright: Copyright 2012 by ns-3, see AUTHORS. |
| 8 | :license: GPL, see LICENSE for details. |
| 9 | #} |
| 10 | {% extends "basic/layout.html" %} |
| 11 | |
| 12 | {% set reldelim1 = '<span class="navelem"> </span>' %} |
| 13 | {# set reldelim1 = ' @' #} |
| 14 | |
| 15 | {%- block extrahead %} |
| 16 | {%- if theme_customstylesheet %} |
| 17 | <link rel="stylesheet" type="text/css" |
| 18 | href="{{ pathto('_static/'+theme_customstylesheet, 1) }}" /> |
| 19 | {%- endif %} |
| 20 | |
| 21 | {%- if theme_favicon %} |
| 22 | <link rel="icon" type="image/ico" |
| 23 | href="{{ pathto('_static/'+theme_favicon, 1) }}" /> |
| 24 | {%- endif %} |
| 25 | {% endblock %} |
| 26 | |
| 27 | {% block header %} |
| 28 | <div id="titlearea"> |
| 29 | <table cellspacing="0" cellpadding="0" width="100%"> |
| 30 | <tbody> |
| 31 | <tr style="height: 56px;"> |
| 32 | <td id="projectlogo"> |
| 33 | <a href="{{ theme_homepage }}"> |
| 34 | <img alt="ndnSIM Logo" |
| 35 | src="{{ pathto('_static/' + theme_logo, 1)}}"/> |
| 36 | </a> |
| 37 | <a href="{{ theme_homepage2 }}"> |
| 38 | <img alt="irl Logo" |
| 39 | src="{{ pathto('_static/' + theme_logo2, 1)}}"/> |
| 40 | </a> |
| 41 | </td> |
| 42 | <td id="projecttext"> |
| 43 | <div id="projectbrief">{{ theme_projectbrief }} </div> |
| 44 | <span id="projectnumber">{{ theme_projectnumber }}</span> |
| 45 | </td> |
| 46 | <td id="projectsection"> |
| 47 | <span style="margin-right:10px">{{ docstitle }}</span> |
| 48 | </td> |
| 49 | </tr> |
| 50 | </tbody> |
| 51 | </table> |
| 52 | </div> |
| 53 | |
| 54 | {% endblock %} |
| 55 | |
| 56 | {% block rootrellink %} |
Alexander Afanasyev | 4cd50e3 | 2013-04-22 18:32:31 -0700 | [diff] [blame] | 57 | <li style="background: none"><a href="index.html">{{ theme_projectname }}</a><span class="navelem"> </span></li> |
| 58 | <li style="background: none"><a href="doxygen/annotated.html">{{ theme_apidocs }}</a><span class=""> </span></li> |
| 59 | <li style="background: none"><span class=""> </span></li> |
| 60 | <li style="background: none"><a href="getting-started.html">Getting started</a><span class=""> </span></li> |
| 61 | <li style="background: none"><a href="ndnsim-research-papers.html">Research papers</a><span class=""> </span></li> |
Alexander Afanasyev | 462bb21 | 2012-11-24 16:42:53 -0800 | [diff] [blame] | 62 | {# |
Alexander Afanasyev | 508269a | 2012-07-28 13:59:54 -0700 | [diff] [blame] | 63 | {{ super() }} |
Alexander Afanasyev | 462bb21 | 2012-11-24 16:42:53 -0800 | [diff] [blame] | 64 | #} |
Alexander Afanasyev | 508269a | 2012-07-28 13:59:54 -0700 | [diff] [blame] | 65 | {% endblock %} |
| 66 | |
| 67 | {% if theme_collapsiblesidebar|tobool %} |
| 68 | {% set script_files = script_files + ['_static/sidebar.js'] %} |
| 69 | {% endif %} |