Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
No results found
Show changes
Commits on Source (30)
......@@ -27,13 +27,13 @@ img#logo {
margin-top: 0px;
}
#navbar-main > ul.nav > li.active > a, #navbar-main > ul.nav > li.ancestor > a {
li.active > a {
background: var(--teckids-orange-light);
background: linear-gradient(var(--teckids-orange-dark), var(--teckids-orange-light), var(--teckids-orange-dark));
color: #f8f8f8;
}
#navbar-main ul.dropdown-menu > li.active > a {
ul.dropdown-menu > li.active > a {
background: var(--teckids-orange-dark);
color: #f8f8f8;
}
......@@ -54,6 +54,10 @@ footer#sponsoren-footer {
padding-bottom: 20px;
}
li.li-column, div.ul-columns li {
display: table-cell;
}
ul.footer-link-list {
list-style-type: none;
margin: 0;
......@@ -165,4 +169,4 @@ time.icon span {
.carousel .carousel-image {
max-height: 500px;
}
\ No newline at end of file
}
static/img/logo-bareos.png

47.2 KiB

static/img/logo-speedpartner.png

26.7 KiB

static/img/logo_informatik-aktuell.png

5.83 KiB

{% extends "base.html" %}
{% block title %}{{ SITENAME }} — Archives{% endblock %}
{% block template_content %}
<div class="container">
<div class="col-sm-12">
<h1>News</h1>
{% for article in articles %}
<h2><a href="{{ article.url }}">{{ article.title }}</a></h2>
<p>{{ article.date }} · <a href="{{ article.author.url }}">{{ article.author }}</a></p>
{{ article.summary }}
{% endfor %}
</div>
</div>
{% endblock %}
......@@ -67,11 +67,6 @@
<abbr class="published" title="{{ article.date.isoformat() }}">
{{ article.locale_date }}
</abbr>
{% if article.modified %}
<abbr class="modified" title="{{ article.modified.isoformat() }}">
{{ article.locale_modified }}
</abbr>
{% endif %}
{% if article.authors %}
<address class="vcard author">
by {% for author in article.authors %}
......
......@@ -61,7 +61,7 @@
{% for title,url in MENUITEMS %}
{% if url is string %}
{% if title != 'Search' %}
<li {% if url == link %}class="active"{% endif %}>
<li {% if output_file == url %}class="active"{% endif %}>
<a href="{{ genurl( url ) }}" {{ newtab(url) }}>{{ title }}</a>
</li>
{% endif %}
......@@ -69,7 +69,7 @@
{% elif url is iterable %}
<li class="btn-group
{%- for title,item_url in url -%}
{%- if item_url == link -%}
{%- if item_url == output_file -%}
{{- ' active' -}}
{%- endif -%}
{%- endfor -%}
......@@ -79,7 +79,7 @@
</a>
<ul class="dropdown-menu" role="menu">
{% for title,item_url in url %}
<li {% if item_url == link %}class="active"{% endif %}>
<li {% if item_url == output_url %}class="active"{% endif %}>
<a href="{{ genurl( item_url ) }}" {{ newtab(item_url) }}>{{ title }}</a>
</li>
{% endfor %}
......@@ -109,9 +109,9 @@
<div class="col s12">
<h3 id='sponsorheading' class="black-text">Sponsoren</h3>
<p id="sponsortext" class="black-text">Wir bedanken uns bei unseren Sponsoren für die Unterstützung unserer Vereinsarbeit. Außerdem freuen wir uns immer über weitere Sponsoren, die ihr Engagement mit ihrem Logo hier bewerben möchten!</p>
<a href="https://www.bareos.com"><img src="/{{ THEME_STATIC_DIR }}/img/logo-bareos.png" href="https://www.bareos.com/" alt="Bareos-Logo" class="sponsorslogo" /></a>
<a href="https://www.speedpartner.de/"><img src="/{{ THEME_STATIC_DIR }}/img/logo-speedpartner.png" alt="Speedpartner-Logo" class="sponsorslogo" /></a>
<a href="https://www.informatik-aktuell.de/"><img src="/{{ THEME_STATIC_DIR }}/img/logo_informatik-aktuell.png" alt="Informatik-Aktuell-Logo" class="sponsorslogo" /></a>
{% for image, url in SPONSOR_LOGOS %}
<a href="{{ url }}"><img src="{{ image }}" href="{{ url }}" alt="{{ url }}" class="sponsorslogo" /></a>
{% endfor %}
</div>
</div>
</div>
......@@ -132,13 +132,9 @@
</div>
<div class="col s6">
<p style="text-align: right">
Teckids e.V.<br/>
Rochusstr. 2<br/>
53123 Bonn
</p>
<p style="text-align: right">
<span class="glyphicon glyphicon-envelope"></span> <a href="mailto:verein@teckids.org">verein@teckids.org</a><br/>
<span class="glyphicon glyphicon-phone-alt"></span> <a href="tel:+4922892934160">+49 228 92934160</a>
{% for text, link in MINIFOOTER_MENU %}
<a href="{{ link }}">{{ text }}</a><br />
{% endfor %}
</p>
</div>
</div>
......
......@@ -27,15 +27,6 @@
{% endblock %}
{% block content %}
<div class="container title">
<div class="row clearfix">
<div class="column full">
<h1>{{ page.title }}</h1>
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
</div>
</div>
</div>
<section class='page_content'>
<div class='container'>
......