blob: e497298fd4fe0eca94e60247a53249dced1702a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{%extends "base.html" %}
{%block title%}Blog | PostgresOpen SV 2018{%endblock%}
{%block pagetitle%}PostgresOpen SV 2018{%endblock%}
{%block content%}
<!-- Main -->
<h1>Blog</h1>
<hr>
{%for blog in blogposts|sort(attribute='posttime', reverse = True) %}
<!-- Sponsorship -->
<h3>{{blog.title}}</h3>
<h4>Posted By: {{blog.sponsorname}} on {{blog.posttime|datetimeformat('%A, %B %d')}}</h4>
{{blog.content|markdown}}
<hr>
{%endfor%}
{% endblock %}
|