10 lines
165 B
Plaintext
10 lines
165 B
Plaintext
|
{% extends "base" %}
|
||
|
|
||
|
{% block title %}
|
||
|
{{ instance.name }}
|
||
|
{% endblock title %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>Welcome on {{ instance.name }}</h1>
|
||
|
{% endblock content %}
|