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

{{blog.title}}

{{blog.full_text()}}

{% endfor %}
{% endblock content %}