92 lines
2.9 KiB
HTML
92 lines
2.9 KiB
HTML
{#
|
|
ns-3/layout.html
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
Sphinx layout template for ns-3.
|
|
|
|
:copyright: Copyright 2012 by ns-3, see AUTHORS.
|
|
:license: GPL, see LICENSE for details.
|
|
#}
|
|
{% extends "basic/layout.html" %}
|
|
|
|
{% set reldelim1 = '<span class="navelem"> </span>' %}
|
|
{# set reldelim1 = ' @' #}
|
|
|
|
{%- block extrahead %}
|
|
{%- if theme_customstylesheet %}
|
|
<link rel="stylesheet" type="text/css"
|
|
href="{{ pathto('_static/'+theme_customstylesheet, 1) }}" />
|
|
{%- endif %}
|
|
|
|
{%- if theme_favicon %}
|
|
<link rel="icon" type="image/ico"
|
|
href="{{ pathto('_static/'+theme_favicon, 1) }}" />
|
|
{%- endif %}
|
|
|
|
<script type="text/javascript" src="_static/drop-down-menu.js"></script>
|
|
|
|
{% endblock %}
|
|
|
|
{% block header %}
|
|
<div id="titlearea">
|
|
<table cellspacing="0" cellpadding="0" width="100%">
|
|
<tbody>
|
|
<tr style="height: 56px;">
|
|
<td id="projectlogo">
|
|
<a href="{{theme_site + theme_homepage}}">
|
|
<img alt="ns-3 Logo"
|
|
src="{{ pathto('_static/' + theme_logo, 1)}}"/>
|
|
</a>
|
|
</td>
|
|
<td id="projecttext">
|
|
<div id="projectbrief">{{ theme_projectbrief }} </div>
|
|
<span id="projectnumber"><script type="text/javascript">document.write(rev)</script></span>
|
|
</td>
|
|
|
|
<td id="ns3-menu">
|
|
<div class="menu">
|
|
<ul >
|
|
<li><a href="{{theme_site + theme_homepage}}"> Home</a>
|
|
</li>
|
|
<li><a href="{{theme_site + theme_wiki}}">Wiki</a>
|
|
</li>
|
|
<li><span onmouseover="mopen('mDocs')"
|
|
onmouseout="mclosetime()">Docs ▼</span>
|
|
<div id="mDocs"
|
|
onmouseover="mcancelclosetime()"
|
|
onmouseout="mclosetime()">
|
|
<a href="{{theme_site + theme_release + theme_manual}}">Manual</a><br/>
|
|
<a href="{{theme_site + theme_release + theme_models}}">Models</a><br/>
|
|
<a href="{{theme_site + theme_release + theme_doxygen}}">API</a><br/>
|
|
</li>
|
|
<li><span onmouseover="mopen('mTuts')"
|
|
onmouseout="mclosetime()">Tutorials ▼</span>
|
|
<div id="mTuts"
|
|
onmouseover="mcancelclosetime()"
|
|
onmouseout="mclosetime()">
|
|
<a href="{{theme_site + theme_release + theme_tutorial}}">English</a><br/>
|
|
<a href="{{theme_site + theme_release + theme_tutport}}">Portuguese</a><br/>
|
|
</li>
|
|
<li><a href="{{theme_site + theme_bugzilla}}">Bugs</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</td>
|
|
<td id="projectsection">
|
|
<span style="margin-right:10px">{{ docstitle }}</span>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block rootrellink %}
|
|
<li class="navelem"><a href="{{ theme_homepage }}">{{ theme_projectname }}</a><span class="navelem"> </span></li>
|
|
{{ super() }}
|
|
{% endblock %}
|
|
|
|
{% if theme_collapsiblesidebar|tobool %}
|
|
{% set script_files = script_files + ['_static/sidebar.js'] %}
|
|
{% endif %}
|