9 changed files with 64 additions and 3 deletions
@ -0,0 +1,3 @@ |
|||
body { |
|||
color: #505050; |
|||
} |
After Width: | Height: | Size: 50 KiB |
After Width: | Height: | Size: 458 KiB |
@ -0,0 +1,22 @@ |
|||
{% load static %} |
|||
<!DOCTYPE html> |
|||
<html lang="en"> |
|||
<head> |
|||
<meta charset="UTF-8"> |
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|||
<title>Zima přijde</title> |
|||
<link rel="stylesheet" href="{% static 'seasons/css/style.css' %}"> |
|||
</head> |
|||
<body> |
|||
<h1>Zima přijde</h1> |
|||
|
|||
{% block content %} |
|||
<p> |
|||
použij block <i>content</i> |
|||
pro vlastní obsah |
|||
</p> |
|||
{% endblock %} |
|||
|
|||
</body> |
|||
</html> |
@ -1 +1,13 @@ |
|||
výchozí stránka |
|||
{% extends "seasons/base.html" %} |
|||
|
|||
{% block content %} |
|||
<p> |
|||
výchozí stránka |
|||
</p> |
|||
|
|||
<p> |
|||
<a href="{% url 'winter' %}">Zima</a> <br> |
|||
<a href="{% url 'summer' %}">Léto</a> |
|||
</p> |
|||
|
|||
{% endblock %} |
@ -0,0 +1,7 @@ |
|||
{% extends "seasons/base.html" %} |
|||
|
|||
{% block content %} |
|||
<p> |
|||
léto |
|||
</p> |
|||
{% endblock %} |
@ -0,0 +1,7 @@ |
|||
{% extends "seasons/base.html" %} |
|||
|
|||
{% block content %} |
|||
<p> |
|||
zima |
|||
</p> |
|||
{% endblock %} |
Loading…
Reference in new issue