12 lines
272 B
HTML
12 lines
272 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Main page{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>
|
|
This is the default main page of
|
|
<a href="https://git.dc09.ru/DarkCat09/tmpl-fastapi">
|
|
FastAPI app template
|
|
</a>
|
|
</h1>
|
|
{% endblock %}
|