jinja2 word template datetime code example
Example 1: jinja2 datetime format
{{ date_of_something.strftime('%Y-%m-%d') }}
Example 2: jinja2 base template
{% extends "layout.html" %}
{% block title %}Index{% endblock %}
{% block head %}
{{ super() }}
<style type="text/css">
.important { color: #336699; }
</style>
{% endblock %}
{% block content %}
<h1>Index</h1>
<p class="important">
Welcome on my awesome homepage.
{% endblock %}