OpenSlides/docs/_templates/layout.html
2011-12-01 23:23:18 +01:00

81 lines
3.1 KiB
HTML

{% extends '!layout.html' %}
{% block extrahead %}
{{ super() }}
<head>
<meta content="OpenSlides, Präsentationssystem, Tagesordnung, Tagesordnungspunkt,
Anträge, Wahlen, Wahlsystem, Abstimmungen, Veranstaltung, Mitgliederversammlung, Delegiertenversammlung, Hauptversammlung,
Parteitag, Beamer, Projektor, Stimmzettel, webbasiert, frei, Open Source, webbasiert,
presentation system, agenda, agenda item, application, election, voting system, event,
general meeting, projector, ballot, web based, free, Open Source"
name="keywords">
<meta content="Agenda presentation with application and voting system" name="description">
</head>
{% endblock %}
{%- block content %}
<div class="box">
<div id="wrapper">
<div id="header">
<div id="header_title">OpenSlides</div>
<div id="header_subtitle">
{%- if language == 'de' %}
Tagesordnungspräsentation mit Antrags- und Wahlsystem
{%- else %}
Agenda presentation with application and voting system
{%- endif %}
</div>
</div>
<div id="content">
{% block body %} {% endblock %}
<p class="footer">
&copy; 2011 | OpenSlides is licensed under GNU GPLv2+.
</p>
</div>
</div> <!-- end wrapper -->
<div id="sidebar">
<div id="logo">
<a href="{{ pathto('index') }}" title="Home" style="border: none;"><img src="_static/images/logo.png"></a>
</div>
<div id="language">
{%- for lng in languages.split(' ') %}
{%- if lng != language %}
<a href="{{ pathto('../'+lng+'/'+pagename) }}">
{%- endif %}
<img src="{{ pathto('_static/images/'+lng+'.png', 1) }}" alt="{{ lng }}" title="{{ lng }}" {%- if lng == language %} width="18px" height="13px" {%- endif %} />
{%- if lng != language %}
</a>
{%- endif %}
&nbsp;
{%- endfor %}
</div>
<div class="nav">
<ul>
{%- if language == 'de' %}
<li><a href="{{ pathto('index') }}">Home</a></li>
<li><a href="features.html">Funktionen</a></li>
<li><a href="demo.html">Demo</a></li>
<li><a href="about.html">Über</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="http://dev.openslides.org">Entwicklung</a></li>
<li><a href="contact.html">Kontakt</a></li>
{%- else %}
<li><a href="{{ pathto('index') }}">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="demo.html">Demo</a></li>
<li><a href="about.html">About</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="http://dev.openslides.org">Development</a></li>
<li><a href="contact.html">Contact</a></li>
{%- endif %}
</ul>
</div>
</div> <!-- end sidebar -->
</div>
{%- endblock %}
{% block relbar2 %}{% endblock %}
{% block footer %} {% endblock %}