{% extends "mobile-layout.html" %} {% macro sentence_case(text) %} {{ text[0]|upper}}{{text[1:] }} {% endmacro %} {% block header %} {% endblock header %} {% block content %}

{{blog.title}}

{% for paragraph in blog.get_paragraphs() %} {{paragraph}}
{% endfor %}

{% endblock content %}