Initial commit: UV-K5 firmware site with flasher
This commit is contained in:
32
templates/base.html
Normal file
32
templates/base.html
Normal file
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{% block title %}UV-K5 Firmware{% endblock %} - UA1ZBE</title>
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="container">
|
||||
<h1>UV-K5 Firmware</h1>
|
||||
<nav>
|
||||
<a href="{{ url_for('index') }}">Главная</a>
|
||||
<a href="{{ url_for('downloads') }}">Загрузки</a>
|
||||
<a href="{{ url_for('flasher') }}">Прошивка</a>
|
||||
<a href="{{ url_for('docs') }}">Документация</a>
|
||||
<a href="{{ url_for('info') }}">Информация</a>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
{% block content %}{% endblock %}
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<p>UV-K5 Open Firmware by UA1ZBE © 2026</p>
|
||||
<p>Прошивка для радиостанции UV-K5 (K5, K4, K6)</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user