Add Base Path

This commit is contained in:
gabatxo1312 2026-01-31 00:05:53 +01:00
commit f6d4e7c556
No known key found for this signature in database
9 changed files with 98 additions and 21 deletions

View file

@ -4,12 +4,12 @@
<meta charset="utf-8">
<title>{% block title %}{{ t!("name") }}{% endblock %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/assets/css/bootstrap.css">
<link rel="stylesheet" href="/assets/css/main.css">
<link rel="stylesheet" href='{{ ctx.asset("assets/css/bootstrap.css") }}'>
<link rel="stylesheet" href='{{ ctx.asset("assets/css/main.css") }}'>
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon.png">
<link rel="stylesheet" href="/assets/css/fork-awesome.min.css">
<link rel="icon" type="image/x-icon" href="/assets/images/favicon.ico">
<link rel="stylesheet" href='{{ ctx.asset("assets/css/fork-awesome.min.css") }}'>
<link rel="icon" type="image/x-icon" href='{{ ctx.asset("assets/images/favicon.ico") }}'>
{% block extra_head %}{% endblock extra_head %}
</head>
@ -26,7 +26,7 @@
{% endblock %}
</footer>
<script src="/assets/js/bootstrap.min.js"></script>
<script src="/assets/js/script.js"></script>
<script src='{{ ctx.asset("assets/js/bootstrap.min.js") }}'></script>
<script src='{{ ctx.asset("assets/js/script.js") }}'></script>
</body>
</html>