OpenSlides/extras/website/_templates/layout.html

82 lines
3.1 KiB
HTML
Raw Normal View History

2011-07-31 10:46:29 +02:00
{% extends '!layout.html' %}
{% load staticfiles %}
2011-07-31 10:46:29 +02:00
2011-09-15 10:02:55 +02:00
{% 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 %}
2011-07-31 10:46:29 +02:00
{%- block content %}
2011-08-01 23:02:31 +02:00
2011-07-31 10:46:29 +02:00
<div class="box">
2011-08-01 07:57:15 +02:00
<div id="wrapper">
<div id="header">
2011-08-01 23:02:31 +02:00
<div id="header_title">OpenSlides</div>
<div id="header_subtitle">
2011-08-01 07:57:15 +02:00
{%- if language == 'de' %}
2011-08-23 22:46:27 +02:00
Tagesordnungspräsentation mit Antrags- und Wahlsystem
2011-08-01 07:57:15 +02:00
{%- else %}
Agenda presentation with application and voting system
{%- endif %}
2011-08-01 23:02:31 +02:00
</div>
2011-08-01 07:57:15 +02:00
</div>
<div id="content">
{% block body %} {% endblock %}
<p class="footer">
&copy; 2011 | OpenSlides is licensed under GNU GPLv2+.
2011-08-01 07:57:15 +02:00
</p>
</div>
</div> <!-- end wrapper -->
2011-07-31 10:46:29 +02:00
2011-08-01 23:02:31 +02:00
<div id="sidebar">
2011-08-01 07:57:15 +02:00
<div id="logo">
<a href="{{ pathto('index') }}" title="Home" style="border: none;"><img src="{% static 'images/logo.png' %}"></a>
2011-08-01 07:57:15 +02:00
</div>
<div id="language">
2011-08-01 23:02:31 +02:00
{%- for lng in languages.split(' ') %}
{%- if lng != language %}
<a href="{{ pathto('../'+lng+'/'+pagename) }}">
{%- endif %}
<img src="{% static {{ 'images/'+lng+'.png' }} %}" alt="{{ lng }}" title="{{ lng }}" {%- if lng == language %} width="18px" height="13px" {%- endif %} />
2011-08-01 23:02:31 +02:00
{%- if lng != language %}
</a>
{%- endif %}
&nbsp;
{%- endfor %}
2011-08-01 07:57:15 +02:00
</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>
2011-08-01 07:57:15 +02:00
<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>
2011-12-01 23:23:18 +01:00
<li><a href="contact.html">Kontakt</a></li>
2011-08-01 07:57:15 +02:00
{%- 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>
2011-08-01 07:57:15 +02:00
<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>
2011-12-01 23:23:18 +01:00
<li><a href="contact.html">Contact</a></li>
2011-08-01 07:57:15 +02:00
{%- endif %}
</ul>
</div>
2011-08-01 23:02:31 +02:00
</div> <!-- end sidebar -->
2011-07-31 10:46:29 +02:00
</div>
{%- endblock %}
{% block relbar2 %}{% endblock %}
{% block footer %} {% endblock %}