71 lines
2.3 KiB
HTML
71 lines
2.3 KiB
HTML
{% extends 'layout.html' %}
|
||
{% load post_helpers %}
|
||
{% load static %}
|
||
{% block content %}
|
||
|
||
|
||
<div class="grid-x small-padding-left-1">
|
||
<div class="medium-8 small cell" style="background: grey">
|
||
{% with post=featured_post %}
|
||
<a href="{{ post.url }}">
|
||
<div class="news-hero-large"style="background-image: url('{{ post.imageurl }}');)">
|
||
<div class="news-hero-text">
|
||
<hr>
|
||
<div class="article-date">
|
||
<p>{{ post.public_date }}</p>
|
||
</div>
|
||
<div class="article-title">
|
||
<h1>{{ post.title|safe }}</h1>
|
||
<p>{{ post.subtitle|default_if_none:" "|safe }}</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</a>
|
||
{% endwith %}
|
||
</div>
|
||
|
||
<div class="cell medium-4 responsive-side-box">
|
||
|
||
<div class="article-row-section">
|
||
<div class="article-row-section-inner">
|
||
|
||
<h1 class="article-row-section-header"><a href="{% url 'posts.index' %}">Neuigkeiten</a></h1>
|
||
|
||
{% with post=featured_event %}
|
||
{% include 'posts/partials/_article_row.html' %}
|
||
{% endwith %}
|
||
{% for post in featured_meeting %}
|
||
{% include 'posts/partials/_meeting_row.html' %}
|
||
{% endfor %}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="grid-container">
|
||
<div class="grid-x grid-padding-x padding-top-1 padding-left-1 padding-right-1">
|
||
{{ tags_list|tags_to_url }}
|
||
</div>
|
||
|
||
<div class="grid-x grid-x-padding">
|
||
<div class="large-8 medium-7 small-12 small-order-2 medium-order-1">
|
||
{% for post in posts %}
|
||
{% include 'posts/partials/_posts_hero.html' %}
|
||
{% endfor %}
|
||
</div>
|
||
|
||
<div class="large-4 medium-5 small-12 small-order-1 medium-order-1 padding-top-1 large-padding-left-1 medium-padding-left-1">
|
||
{% for post in events %}
|
||
{% include 'posts/partials/_date_box.html' %}
|
||
{% endfor %}
|
||
FET-Kalender abonnieren: <a href="{% url 'posts.calendar' %}">ICS Kalender</a>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
<a class="button" href="{% url 'posts.index' %}" style="background: gray">Mehr anzeigen</a>
|
||
|
||
</div>
|
||
|
||
{% endblock %}
|