update meeting show at home (shows last and next one), update clean function of meeting
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
11
fet2020/templates/posts/partials/_meeting_row.html
Normal file
11
fet2020/templates/posts/partials/_meeting_row.html
Normal 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>
|
||||
Reference in New Issue
Block a user