self-hosting bootstrap files, fonts and icons
This commit is contained in:
@@ -5,13 +5,16 @@
|
||||
{% set base = "" %}
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta charset="UTF-8">
|
||||
<!--
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4Q6Gf2aSP4eDXB8Miphtr37CMZZQ5oXLH2yaXMJ2w8e2ZtHTl7GptT4jmndRuHDT" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css">
|
||||
-->
|
||||
<link rel="stylesheet" href="{{ parent_path }}static/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="{{ parent_path }}static/css/bootstrap-icons.min.css">
|
||||
<link href="{{ parent_path }}static/css/theme.css" rel="stylesheet">
|
||||
<title>{{ page_title }}</title>
|
||||
{% block head_includes %}
|
||||
{% endblock %}
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="top_wrapper">
|
||||
@@ -24,9 +27,9 @@
|
||||
<div id="menu_container" class="row justify-content-end pe-2 py-2" >
|
||||
<div id="menu_wrapper" class="col-auto fw-bold">
|
||||
<a class="link-body-emphasis mx-2 text-decoration-none" href="{{ parent_path }}index.html">Home</a>
|
||||
<a class="link-body-emphasis mx-2 text-decoration-none" id="categories_toggle" href="#none">Categories</a>
|
||||
<a class="link-body-emphasis mx-2 text-decoration-none" id="categories_toggle" href="#!">Categories</a>
|
||||
<a class="link-body-emphasis mx-2 text-decoration-none" href="{{ parent_path }}static/about.html">About</a>
|
||||
<a class="link-body-emphasis mx-2 text-decoration-none" id="dark_theme_toggle" href="#none">🌓︎</a>
|
||||
<a class="link-body-emphasis mx-2 text-decoration-none" id="dark_theme_toggle" href="#!">🌓︎</a>
|
||||
</div>
|
||||
</div>
|
||||
<div id="categories_container" class="container">
|
||||
@@ -37,7 +40,6 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="content_wrapper" class="container-fluid mb-2">
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
@@ -58,7 +60,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/js/bootstrap.min.js" integrity="sha384-RuyvpeZCxMJCqVUGFI0Do1mQrods/hhxYlcVfGPOfQtPJh0JCw12tUAZ/Mv10S7D" crossorigin="anonymous"></script>
|
||||
<script src="{{ parent_path }}static/js/popper.min.js"></script>
|
||||
<script src="{{ parent_path}}static/js/bootstrap.min.js"></script>
|
||||
<script defer src="{{ parent_path }}static/js/theme.js"></script>
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user