Files
blog/www/templates/now/now.html

17 lines
296 B
HTML

{% extends 'base.html' %}
{% block title %}now{% endblock %}
{% block content %}
<article class="now">
{{ now['html']|safe }}
</article>
{% if g.user %}
<div class="row">
<a href="{{ url_for('now.update') }}" class="button button-primary">update</a>
</div>
{% endif %}
{% endblock %}