update meeting show at home (shows last and next one), update clean function of meeting

This commit is contained in:
2020-09-03 13:58:39 +00:00
parent 05aa3ddf5d
commit 992ddcced1
6 changed files with 54 additions and 26 deletions

View File

@@ -1,15 +1,12 @@
<a href="{{post.url}}">
<article class="article-row">
<article class="article-row">
<div class="article-row-content">
<h1 class="article-row-content-header">{{post.title}}</h1>
<p class="article-row-content-description">{{post.subtitle}}</p>
<p class="article-row-content-author">{{post.author}}</p>
<time class="article-row-content-time" datetime="2008-02-14 20:00">{{post.public_date}}</time>
<h1 class="article-row-content-header">{{post.title}}</h1>
{% if post.subtitle is not None %}
<p class="article-row-content-description">{{post.subtitle}}</p>
{% endif %}
<p class="article-row-content-author">{{post.author}}</p>
<time class="article-row-content-time" datetime="2008-02-14 20:00">{{post.public_date}}</time>
</div>
</article>
</a>
</article>
</a>

View File

@@ -1,10 +1,11 @@
<a href ="posts/{{post.slug}}">
<div class="date-box">
<span>
<a href ="posts/{{post.slug}}">
<div class="date-box">
<span>
<span class="date-badge badge primary" style="">
<span class="date-badge-day">{{post.event_start_day}}</span>
<span class="date-badge-month">{{post.event_start_month}}</span>
</span></span>
<span class="date-badge-day">{{post.event_start_day}}</span>
<span class="date-badge-month">{{post.event_start_month}}</span>
</span>
</span>
<span class="date-text"><strong>{{post.title}}</strong></span>
</div></a>
</div>
</a>

View File

@@ -0,0 +1,11 @@
<a href="{{post.url}}">
<article class="article-row">
<div class="article-row-content">
<h1 class="article-row-content-header">{{post.title}}</h1>
{% if post.subtitle is not None %}
<p class="article-row-content-description">{{post.subtitle}}</p>
{% endif %}
<time class="article-row-content-time" datetime="2008-02-14 20:00">{{post.event_start}}</time>
</div>
</article>
</a>