1
0
Files
django-template/app/templates/app/home.html
2020-02-18 15:26:39 +01:00

10 lines
185 B
HTML

{% extends "app/base.html" %}
{% load i18n %}
{% block title %}{{ site.title }} - {% trans "Home" %}{% endblock %}
{% block content %}
<h1>{% trans "Home" %}</h1>
{% endblock %}