33 lines
1 KiB
HTML
33 lines
1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{% block title %}{{ title }}{% endblock %} - Fitness Parser</title>
|
|
|
|
<link href="{{ url_for('static', path='/css/bootstrap.min.css') }}" rel="stylesheet">
|
|
<link href="{{ url_for('static', path='/css/main.css') }}" rel="stylesheet">
|
|
|
|
{% block extra_head %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<!-- Navigation -->
|
|
<nav class="navbar navbar-dark bg-primary">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="/">
|
|
<strong>{{ app_name }}</strong>
|
|
</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Main Content -->
|
|
<main class="container mt-4">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
<script src="{{ url_for('static', path='/js/jquery-3.7.1.min.js') }}"></script>
|
|
<script src="{{ url_for('static', path='/js/bootstrap.bundle.min.js') }}"></script>
|
|
<script src="{{ url_for('static', path='/js/main.js') }}"></script>
|
|
|
|
{% block extra_scripts %}{% endblock %}
|
|
</body>
|
|
</html>
|