radiquum.github.io--photos/admin/templates/Base.html

21 lines
No EOL
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Radiquum-Photos Admin Panel</title>
<link rel="stylesheet" href="{{ url_for('static', filename='tailwind.css') }}" />
<script src="https://cdn.jsdelivr.net/npm/flowbite@3.1.2/dist/flowbite.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/dayjs@1/dayjs.min.js"></script>
</head>
<body class="bg-slate-900 text-white">
<div class="mx-auto container p-8">
<h1 class="text-3xl text-bold border-b border-gray-700 pb-2">{{page_title}}</h1>
<nav class="py-4 flex gap-4">
<a href="{{ url_for('Home')}}" class="text-xl {% if page_title.lower() == 'home' %} text-orange-400 {% else %} text-gray-300 hover:text-orange-600 {% endif %}">Home</a>
<a href="{{ url_for('Upload')}}" class="text-xl {% if page_title.lower() == 'upload' %} text-orange-400 {% else %} text-gray-300 hover:text-orange-600 {% endif %}">Upload</a>
</nav>
{% block content %}{% endblock %}
</div>
</body>
</html>