mirror of
https://github.com/uw935/vatsimfox.git
synced 2026-09-17 04:48:58 +00:00
61 lines
2.5 KiB
HTML
61 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="description" content="VATSIM Fox — check your detailed profile statistic">
|
|
<meta name="keywords" content="VATSIM FOX, fox, vatsim, vatsim statistic, statistic, vatsim fox, flight simulator">
|
|
<meta name="author" content="uw935">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta content="yes" name="apple-touch-fullscreen" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="#FA8232">
|
|
<meta name="format-detection" content="telephone=no">
|
|
<link rel="icon" href="{{ url_for('static', path='icon.ico') }}" type="image/x-icon">
|
|
<title>{% block title %}{% endblock %}</title>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
|
|
{% block header_css %}{% endblock %}
|
|
</head>
|
|
<style>
|
|
.btn-outline-primary:hover, .btn-outline-primary:active {
|
|
color: white !important;
|
|
background-color: var(--main-rgb) !important;
|
|
border-color: var(--main-rgb) !important;
|
|
}
|
|
|
|
.btn-outline-primary {
|
|
border-color: var(--main-rgb);
|
|
color: var(--main-rgb);
|
|
}
|
|
|
|
:root {
|
|
--main-rgb: #FA8232;
|
|
--bs-primary-rgb: 250, 130, 50
|
|
}
|
|
</style>
|
|
<body>
|
|
<main>
|
|
<header class="border-bottom">
|
|
<div class="container py-4">
|
|
<a href="/" class="d-flex align-items-center text-dark text-decoration-none">
|
|
<span class="fs-4">🦊 VATSIM <span class="text-primary">Fox</span></span>
|
|
</a>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="container py-4">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
|
|
<footer class="text-muted border-top">
|
|
<div class="container py-4">
|
|
created by
|
|
<a href="https://uw935.com/" style="text-decoration: underline; cursor: pointer;">uw935</a> (1606255)
|
|
</div>
|
|
</footer>
|
|
</main>
|
|
|
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
|
|
{% block javascript_code %}{% endblock %}
|
|
</body>
|
|
</html> |