50 lines
1.5 KiB
HTML
50 lines
1.5 KiB
HTML
|
{% extends '!layout.html' %}
|
||
|
|
||
|
{%- block content %}
|
||
|
|
||
|
<div class="box">
|
||
|
<div class="language">
|
||
|
{%- for lng in languages.split(' ') %}
|
||
|
{%- if lng != language %}
|
||
|
<a href="{{ pathto('../'+lng+'/'+pagename) }}"><img src="{{ pathto('_static/images/'+lng+'.png', 1) }}" alt="{{ lng }}" title="{{ lng }}" border="0" width="18px" height="13px"/></a>
|
||
|
{%- endif %}
|
||
|
{%- endfor %}
|
||
|
</div>
|
||
|
|
||
|
<div class="header">
|
||
|
<h1><span>OpenSlides</span></h1>
|
||
|
<p>
|
||
|
{%- if language == 'de' %}
|
||
|
Tagesordnungs-Präsentation<br> mit Antrags- und Wahlsystem
|
||
|
{%- else %}
|
||
|
Agenda presentation<br> with application and voting system
|
||
|
{%- endif %}
|
||
|
</div>
|
||
|
|
||
|
<div class="nav">
|
||
|
{%- if language == 'de' %}
|
||
|
<a href="{{ pathto('index') }}">Home</a> |
|
||
|
<a href="about.html">Über</a> |
|
||
|
<a href="download.html">Download</a> |
|
||
|
<a href="http://trac.openslides.org">Entwicklung</a> |
|
||
|
<a href="help.html">Hilfe</a>
|
||
|
{%- else %}
|
||
|
<a href="{{ pathto('index') }}">Home</a> |
|
||
|
<a href="about.html">About</a> |
|
||
|
<a href="download.html">Download</a> |
|
||
|
<a href="http://trac.openslides.org">Development</a> |
|
||
|
<a href="help.html">Help</a>
|
||
|
{%- endif %}
|
||
|
</div>
|
||
|
|
||
|
{% block body %} {% endblock %}
|
||
|
|
||
|
<p class="footer">
|
||
|
© 2011 | OpenSlides is licensed under GPLv2+.
|
||
|
</p>
|
||
|
|
||
|
</div>
|
||
|
{%- endblock %}
|
||
|
|
||
|
{% block relbar2 %}{% endblock %}
|
||
|
{% block footer %} {% endblock %}
|