Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-guides/TRaSH-Guides/blame/commit/e4b1805acfd986d5cf4a28d2773029fee34be043/overrides/main.html You should set ROOT_URL correctly, otherwise the web may not work correctly.
TRaSH-Guides/overrides/main.html

32 lines
824 B

4 years ago
{% extends "base.html" %}
{% block content %}
{{ super() }}
<footer class="sponsorship">
<hr>
<a href="https://github.com/sponsors/TRaSH-" title="Buy me a Coffee"><img src="/img/buy-me-a-coffee.png" alt="Buy me a coffee" width="137" height="39">
</a>
<hr>
</footer>
{% endblock %}
{% block styles %}
{{ super() }}
<link rel="stylesheet" href="{{ base_url }}/css/lightgallery.min.css">
{% endblock styles %}
{% block libs %}
{{ super() }}
<script src="{{ base_url }}/js/lightgallery.min.js"></script>
{% endblock libs %}
{% block scripts %}
{{ super() }}
<script>
var elements = document.getElementsByClassName("lightgallery");
for(var i=0; i<elements.length; i++) {
lightGallery(elements[i]);
}
</script>
{% endblock scripts %}