This repository has been archived on 2025-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
RIS/App/templates/index.html
Anton Kamalov caa21d25ff Вёрстка
2024-10-24 00:26:01 +03:00

16 lines
400 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Привет мир!</title>
<link href="static/css/main.css" type="text/css" rel="stylesheet">
</head>
<body>
<h1>Hello World</h1>
<nav class="menu">
{% for point in menu %}
<a class="middle" href="{{ point['url'] }}">{{ point['name'] }}</a>
{% endfor %}
</nav>
</body>
</html>