14 lines
207 B
HTML
14 lines
207 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Example{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Example</h2>
|
|
<p>
|
|
{{ data.message }}
|
|
</p>
|
|
|
|
<h3>Data</h3>
|
|
|
|
{{ data.data }}
|
|
{% endblock %}
|