Qsearch / Templates /base.html
flyfir248's picture
Deployment v1.0 - Zero Secret History
d21c4c8
<!-- base.html - Save in templates/ folder -->
<!DOCTYPE html>
<html lang="en">
<head>
{% include 'head_meta.html' %}
<title>{% block title %}Qsearch Intelligence - Find people who matter{% endblock %}</title>
<link rel="icon" type="image/png" sizes="96x96" href="{{ url_for('static', filename='misc/favicon/favicon-96x96.png') }}">
<link rel="apple-touch-icon" sizes="180x180" href="{{ url_for('static', filename='misc/favicon/apple-touch-icon.png') }}">
<link rel="icon" type="image/png" sizes="192x192" href="{{ url_for('static', filename='misc/favicon/web-app-manifest-192x192.png') }}">
<link rel="icon" type="image/png" sizes="512x512" href="{{ url_for('static', filename='misc/favicon/web-app-manifest-512x512.png') }}">
<link rel="icon" href="{{ url_for('static', filename='misc/favicon/favicon.svg') }}" type="image/svg+xml">
<link rel="manifest" href="{{ url_for('static', filename='misc/favicon/site.webmanifest') }}">
<link rel="shortcut icon" href="{{ url_for('static', filename='misc/favicon/favicon.ico') }}">
{% include 'head_assets.html' %}
{% block extra_head %}{% endblock %}
</head>
<body class="min-h-screen bg-gray-50">
{% include 'header.html' %}
<main class="pt-4">
{% block content %}{% endblock %}
</main>
{% block scripts %}{% endblock %}
</body>
</html>