1
0

Initial Commit

This commit is contained in:
2017-12-31 03:40:56 +03:00
commit 4dbb509588
18 changed files with 343 additions and 0 deletions

10
templates/home.html Normal file
View File

@@ -0,0 +1,10 @@
{% extends 'layout.html' %}
{% load i18n %}
{% block body %}
<div class="jumbotron">
<h1>{% blocktrans %}Welcome to {{ app_name }} official site!{% endblocktrans %}</h1>
<p class="lead">
{{ app_text }}
</p>
</div>
{% endblock %}