Initial commit

This commit is contained in:
Edward Betts 2025-11-15 10:54:32 +00:00
commit 1180c0817f
15 changed files with 1012 additions and 0 deletions

28
templates/base.html Normal file
View file

@ -0,0 +1,28 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Immich Alt Text Helper</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
</head>
<body>
<header class="site-header">
<div class="container">
<h1><a href="{{ url_for('main.index') }}">Immich Alt Text Helper</a></h1>
</div>
</header>
<main class="container">
{% with messages = get_flashed_messages() %}
{% if messages %}
<div class="flash-messages">
{% for message in messages %}
<div class="flash">{{ message }}</div>
{% endfor %}
</div>
{% endif %}
{% endwith %}
{% block content %}{% endblock %}
</main>
</body>
</html>