{%block title%}{{title}}{%endblock%}
{%block contents%}
-<h1>{{title}}</h1>
+<h1>{{title}} <i class="fas fa-calendar-alt"></i></h1>
{%for eventblock in eventblocks%}
{%if eventblocks|length > 1%}<h2><a name="{{eventblock.anchor|slugify}}">{{eventblock.name}}</a></h2>{%endif%}
<p>
<em><strong>Note:</strong> The PostgreSQL Global Development Group does not endorse any
events run by third parties. No guarantee of the quality of events is offered
-whatsoever. For information on <a href="/community/recognition/#conferences">Community Conference Recognition</a>, please review the guidelines <a href="/community/recognition/#conferences">here</a>.</em>
+whatsoever.</em>
</p>
+{% if eventblock.name == 'Community Events' %}
+<p>
+ <img src="/media/img/PostgreSQL_Badge1.svg" class="community" alt="PostgreSQL Community Event">
+ indicates that an event is recognised under the <a href="/community/recognition/#conferences">community event guidelines</a> and is directly helping the PostgreSQL community.
+</p>
+{% endif %}
{%for event in eventblock.events %}
-<div><a href="/about/event/{{event.id}}/">{{event.title}}</a></div>
+<div>
+ {% if event.badged %}
+ <img src="/media/img/PostgreSQL_Badge1.svg" class="community" alt="PostgreSQL Community Event">
+ {% endif %}
+ <a href="/about/event/{{event.id}}/">{{event.title}}</a>
+</div>
<div>Date: <strong>{{event.displaydate|safe}}</strong></div>
<div>Location: <strong>{{event.locationstring}}</strong></div>
{%if event.language%}<div>Language: <strong>{{event.language}}</strong></div>{%endif%}
website. We apologise for any formatting issues caused by the migration.</em></p>
{%endif%}
{%for t in obj.tags.all%}
-<span class="newstag"><a href="/about/newsarchive/{{t.urlname}}/">{{t.name}}</a></span>
+<span class="newstag"><a class="btn btn-primary" href="/about/newsarchive/{{t.urlname}}/">{{t.name}}</a></span>
{%endfor%}
{%endblock%}
{%load markup%}
{%block title%}News archive{%if tag%} - {{tag.name}}{%endif%}{%endblock%}
{%block contents%}
-<h1>News archive{%if tag%} - {{tag.name}}{%endif%}</h1>
+<h1>News archive{%if tag%} - {{tag.name}}{%endif%} <i class="far fa-newspaper"></i></h1>
<p>
-{%for t in newstags%}<span class="newstag"><a href="/about/newsarchive/{{t.urlname}}/">{{t.name}}</a></span> {%endfor%}
+{%for t in newstags%}<span class="newstag"><a class="btn btn-primary" href="/about/newsarchive/{{t.urlname}}/">{{t.name}}</a></span> {%endfor%}
</p>
{%for obj in news %}
-<h2><a href="/about/news/{{obj.id}}/">{{obj.title}}</a></h2>
+<h2 class="news"><a href="/about/news/{{obj.id}}/">{{obj.title}}</a></h2>
<div class="newsdate">Posted on <strong>{{obj.displaydate}}</strong> by {{ obj.org.name }}</div>
{{obj.content|markdown|striptags|truncatewords:20}}
<p><a href="/about/news/{{obj.id}}/">Read more...</a></p>