{%extends "base.html" %} {%block title%}Blog | PostgresOpen SV 2018{%endblock%} {%block pagetitle%}PostgresOpen SV 2018{%endblock%} {%block content%}

Blog


{%for blog in blogposts|sort(attribute='posttime', reverse = True) %}

{{blog.title}}

Posted By: {{blog.sponsorname}} on {{blog.posttime|datetimeformat('%A, %B %d')}}

{{blog.content|markdown}}
{%endfor%} {% endblock %}