Files
LifeFaq/templates/base_template.html

48 lines
1.6 KiB
HTML
Raw Normal View History

2024-12-10 17:09:37 +01:00
<!DOCTYPE HTML>
<html>
<head>
<title>{% block title %}PortugalFAQ{% endblock %}</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
2024-12-10 17:30:58 +01:00
<link rel="stylesheet" href="{{ url_for('static', path='css/main.css',
2024-12-10 17:09:37 +01:00
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<!-- Main -->
<div id="main">
<div class="inner">
<!-- Header -->
<header id="header">
<a href="/" class="logo">
<strong>{{ page_title }}</strong> af {{ author }}
</a>
</header>
<!-- Content -->
{% block content %}{% endblock %}
</div>
</div>
<!-- Sidebar -->
<div id="sidebar">
<div class="inner">
{% include 'navigation.html' %}
<!-- Footer -->
<footer id="footer">
<p class="copyright">
&copy; Henriks lille hjørne: <a href="https://lifefaq.i80.dk">LifeFAQ</a>
</p>
</footer>
</div>
</div>
</div>
<!-- Scripts -->
2024-12-10 17:30:58 +01:00
<script src="{{ url_for('static', path='js/jquery.min.js',_scheme='https')) }}"></script>
<script src="{{ url_for('static', path='js/browser.min.js',_scheme='https')) }}"></script>
<script src="{{ url_for('static', path='js/breakpoints.min.js',_scheme='https')) }}"></script>
<script src="{{ url_for('static', path='js/util.js',_scheme='https')) }}"></script>
<script src="{{ url_for('static', path='js/main.js',_scheme='https')) }}"></script>
2024-12-10 17:09:37 +01:00
</body>
</html>