DummyApp/app/templates/base.html
Norvicdev e6e700c2ee
Some checks failed
Build and Deploy Flask App / test (pull_request) Has been cancelled
Build and Deploy Flask App / build-and-push (pull_request) Has been cancelled
Build and Deploy Flask App / deploy (pull_request) Has been cancelled
entire app update:
moder view app with static page, forgejo ci/cd workflow
2026-08-04 17:29:48 +03:00

31 lines
No EOL
896 B
HTML

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}{{ title }}{% endblock %}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
<nav>
<div class="nav-container">
<h1>🚀 Flask CI/CD</h1>
<div class="nav-links">
<a href="/">Главная</a>
<a href="/health">Health</a>
<a href="/api/info">API Info</a>
</div>
</div>
</nav>
<main>
{% block content %}{% endblock %}
</main>
<footer>
<p>Версия: {{ version }} | Сборка: {{ build_time if build_time else 'N/A' }}</p>
</footer>
<script src="{{ url_for('static', filename='js/main.js') }}"></script>
</body>
</html>