public-health-ch/publichealth/home/templates/news.html

61 lines
1.8 KiB
HTML
Raw Normal View History

2017-03-14 10:10:32 +00:00
{% load wagtailcore_tags wagtailimages_tags puput_tags %}
2017-07-26 10:42:06 +00:00
<!-- Front page news -->
2017-02-15 09:54:06 +00:00
<section id="news">
<div class="container">
<div class="row">
{% for entry in blogentries %}
2017-07-26 10:42:06 +00:00
<!-- Blog post {{ entry.id }} -->
<div class="col-md-4 col-sm-6 col-xs-12 blog-entry">
2017-02-15 09:54:06 +00:00
<div class="panel panel-default">
2017-03-14 10:10:32 +00:00
{% if entry.header_image %}
{% image entry.header_image fill-360x270 %}
{% endif %}
2017-02-15 09:54:06 +00:00
<div class="panel-body">
2017-03-14 10:10:32 +00:00
<h3><span>{{ entry.title }}</span></h3>
<p>
{% if entry.excerpt %}
2017-05-09 10:21:38 +00:00
{{ entry.excerpt|striptags }}
{% else %}
2017-07-03 15:21:31 +00:00
{{ entry.body|striptags|truncatewords_html:40 }}
2017-05-09 10:21:38 +00:00
{% endif %}
2017-03-14 10:10:32 +00:00
</p>
2017-09-05 08:54:43 +00:00
<a href="{% pageurl entry %}" class="btn btn-default btn-xs"> 🡆 </a>
2017-02-15 09:54:06 +00:00
</div>
2017-03-14 10:10:32 +00:00
<a href="{% pageurl entry %}" class="fill"></a>
2017-02-15 09:54:06 +00:00
</div>
</div>
2017-09-04 13:30:33 +00:00
{% empty %}
<!-- No blogs today -->
{% endfor %}
2017-09-14 11:39:10 +00:00
{% for feedType in entryfeeds %}
<div class="col-md-4 col-sm-6 col-xs-12 news-entry">
<h4 class="partner-news"><a href="/{{ feedType.link }}">{{ feedType.name }}
<!-- <span class="glyphicon {{ feedType.icon }}" aria-hidden="true"></span> -->
2017-09-14 11:39:10 +00:00
</a></h4>
<div class="panel panel-fulltext">
<div class="panel-body">
<ul>
{% for entry in newsentries %}
{% if feedType.name in entry.stream.title %}
<li><!-- News entry {{ entry.id }} -->
<a href="{{ entry.link }}" target="_blank">
{{ entry.title|striptags|truncatewords_html:10 }}
</a>
<br><small>{{ entry.published }}</small>
</li>
{% endif %}
{% empty %}
<!-- No news today -->
{% endfor %}
<ul>
2017-07-26 10:42:06 +00:00
</div>
</div>
2017-09-14 11:39:10 +00:00
</div><!-- /news-entry -->
{% endfor %}
2017-02-15 09:54:06 +00:00
</div>
</div>
2017-03-14 10:10:32 +00:00
</section>