[Refactor] Split index.html to base.html and welcome.html

This commit is contained in:
2018-06-29 07:58:28 +02:00
parent a0d630d9bf
commit 1f3cb17751
3 changed files with 6 additions and 1 deletions

26
app/templates/base.html Normal file
View File

@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<title>Calendar.Social</title>
{% block head %}
<style>
footer {
margin-top: 3em;
font-weight: bold;
border-top: 1px dotted black;
padding-top: 1em;
}
</style>
{% endblock %}
</head>
<body>
<header>
<h1>Calendar.social</h1>
</header>
{% block content %}{% endblock %}
<footer>
Soon…™
</footer>
{% block scripts %}{% endblock %}
</body>
</html>