blob: f41fa3177aac8a5b53b80283a6a759f34e0bb5ac [file] [log] [blame]
Alexander Afanasyev508269a2012-07-28 13:59:54 -07001{#
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">&nbsp;</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 Afanasyev462bb212012-11-24 16:42:53 -080057 <li style="background: none"><a href="{{ theme_homepage }}">{{ theme_projectname }}</a><span class="navelem">&nbsp;</span></li>
58 <li style="background: none"><a href="{{ theme_apidocsurl }}">{{ theme_apidocs }}</a><span class="">&nbsp;</span></li>
59{#
Alexander Afanasyev508269a2012-07-28 13:59:54 -070060 {{ super() }}
Alexander Afanasyev462bb212012-11-24 16:42:53 -080061#}
Alexander Afanasyev508269a2012-07-28 13:59:54 -070062{% endblock %}
63
64{% if theme_collapsiblesidebar|tobool %}
65 {% set script_files = script_files + ['_static/sidebar.js'] %}
66{% endif %}