47 lines
1.6 KiB
HTML
47 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.0">
|
|
<title>{% block title %}Digital Garage Sale{% endblock %}</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
|
</head>
|
|
<body>
|
|
<header class="site-header">
|
|
<div class="container">
|
|
<h1 class="site-title">Hex's Garage Sale Catalog</h1>
|
|
<nav class="nav">
|
|
<ul class="nav-list">
|
|
<li class="nav-item"><a href="{{ url_for('main.index') }}">Home</a></li>
|
|
{% if session.get('admin_authenticated') %}
|
|
<li class="nav-item"><a href="{{ url_for('admin.dashboard') }}">Admin</a></li>
|
|
{% else %}
|
|
<li class="nav-item"><a href="{{ url_for('admin.login') }}">Admin Login</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="container">
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
{% if messages %}
|
|
{% for category, message in messages %}
|
|
<div class="alert alert-{{ category }}">
|
|
{{ message }}
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endwith %}
|
|
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
<footer class="site-footer">
|
|
<div class="container">
|
|
<p>Uncopyrighted software, free for public use! <3</p>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|