Files
uv-k5-firmware-site/templates/index.html

63 lines
2.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "base.html" %}
{% block title %}Главная{% endblock %}
{% block content %}
<div class="card hero">
<h2>UV-K5 Open Firmware</h2>
<p>Альтернативная прошивка для радиостанций UV-K5, K4, K6 и их клонов с расширенным функционалом</p>
<a href="{{ url_for('downloads') }}" class="btn btn-download">
<span>Скачать прошивку</span>
</a>
</div>
<div class="card">
<h3>Последняя версия: {{ latest.version }}</h3>
<p class="release-date">Дата: {{ latest.date }} | Размер: {{ latest.size }}</p>
<div class="feature-tags">
{% for feature in latest.features %}
<span class="tag">{{ feature }}</span>
{% endfor %}
</div>
</div>
<div class="card">
<h3>Возможности прошивки</h3>
<div class="features-grid">
<div class="feature-item">
<h3>FM Радио</h3>
<p>Встроенный FM-приёмник 88-108 МГц</p>
</div>
<div class="feature-item">
<h3>Анализатор спектра</h3>
<p>Сканирование эфира и отображение сигналов</p>
</div>
<div class="feature-item">
<h3>Расширенный RX</h3>
<p>Приём от 50 до 10800 МГц</p>
</div>
<div class="feature-item">
<h3>RSSI индикатор</h3>
<p>Отображение уровня сигнала на экране</p>
</div>
<div class="feature-item">
<h3>POCSAG</h3>
<p>Декодирование POCSAG пейджинга</p>
</div>
<div class="feature-item">
<h3>DCS/CTCSS</h3>
<p>Полная поддержка DCS/CTCSS кодов</p>
</div>
</div>
</div>
<div class="card">
<h3>Поддерживаемые модели</h3>
<ul>
<li>UV-K5 / K4 / K6</li>
<li>Baofeng K5 (K5 Plus)</li>
<li>Luiton LT-7255</li>
<li>П compatible devices</li>
</ul>
</div>
{% endblock %}