You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
949 B
35 lines
949 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<a href="/">Domů</a>
|
|
<a href="/o_nas">O nás</a>
|
|
<a href="/kontakt">Kontakt</a>
|
|
</nav>
|
|
|
|
<h1>TEST VÝPISU: {{mesto}}</h1>
|
|
<p>Teplota: <b>{{teplota}}°C</b></p>
|
|
<p style="color:cyan">Vlhkost: <b>{{vlhkost}}%</b></p>
|
|
<div> Stav: {{stav}} </div>
|
|
<hr>
|
|
{% if teplota > 30 %}
|
|
<div style="background-color: lightcoral;">
|
|
Extrémní horko! Zůstaňte ve stínu
|
|
</div>
|
|
{% elif teplota < 0 %}
|
|
<div style="background-color: #d0ffff;">
|
|
Mrzne! Pozor na náledí
|
|
</div>
|
|
{% else %}
|
|
<div style="color: rgb(255, 0, 0); background-color: hsl(180, 100%, 50%);">
|
|
Počasí v HTML v klidu
|
|
</div>
|
|
{% endif %}
|
|
|
|
</body>
|
|
</html>
|