Some checks failed
Build ISO / build-iso (push) Successful in 20m10s
Deploy site / deploy (push) Successful in 13s
CI / lint (push) Failing after 26s
CI / test (push) Successful in 33s
CI / validate-json (push) Successful in 24s
CI / markdown-links (push) Successful in 14s
Release / release (push) Successful in 6s
Rolls the HTTPS handshake fix (#10) and the README realignment into a tagged release. Also closes the 26.4 follow-up that the wizard footer version was hand-pinned: webinstaller/app.py now resolves the version via a Flask context processor (reads /opt/furtka/VERSION on the live ISO, written by iso/build.sh from pyproject.toml at build time; falls back to pyproject.toml in dev runs, then to "dev"). pyproject.toml and the website version strings bumped in the same commit so every surface reports 26.5-alpha consistently. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
38 lines
1.6 KiB
HTML
38 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{% block title %}Furtka Installer{% endblock %}</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
{% block head_extra %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<header class="site-header">
|
|
<div class="container">
|
|
<a href="{{ url_for('install_step_1') }}" class="site-title" aria-label="Furtka Installer — restart">
|
|
<svg class="gate-mark" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
|
stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
|
|
<path d="M4 20 V12 A9 9 0 0 1 20 12 V20"/>
|
|
<line x1="12" y1="5" x2="12" y2="20"/>
|
|
<line x1="3" y1="20" x2="21" y2="20"/>
|
|
<line x1="15" y1="12" x2="15" y2="14.5"/>
|
|
</svg>
|
|
<span class="wordmark">Furtka<span class="sep">·</span>Installer</span>
|
|
</a>
|
|
{% block step_indicator %}{% endblock %}
|
|
</div>
|
|
</header>
|
|
|
|
<main class="container">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
<footer class="site-footer">
|
|
<div class="container">
|
|
<p class="kicker">Furtka {{ furtka_version }} · AGPL-3.0</p>
|
|
<p class="kicker"><a href="https://furtka.org" style="color: inherit; text-decoration: none">furtka.org</a></p>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|