23 lines
1,006 B
HTML
23 lines
1,006 B
HTML
{% load static %}
|
|
{% if sentry_dsn %}
|
|
<script src="https://browser.sentry-cdn.com/7.7.0/bundle.min.js"></script>
|
|
<script>
|
|
if (window.Sentry) Sentry.init({
|
|
dsn: "{{ sentry_dsn }}",
|
|
release: "{{ version_hash }}",
|
|
environment: "{{ settings_module }}",
|
|
tracesSampleRate: 1.0,
|
|
});
|
|
</script>
|
|
{% endif %}
|
|
{% if jquery %}
|
|
<script src="https://cdn.staticfile.org/jquery/3.6.1/jquery.min.js"></script>
|
|
{% else %}
|
|
<script src="https://cdn.staticfile.org/cash/8.1.1/cash.min.js"></script>
|
|
{% endif %}
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/htmx/1.8.4/htmx.min.js"></script>
|
|
<script src="{% static 'lib/js/hyperscript-0.9.7.min.js' %}"></script>
|
|
<link rel="stylesheet" href="{% static 'css/boofilsic.css' %}">
|
|
<link rel="stylesheet" href="{% static 'lib/css/rating-star.css' %}">
|
|
<link rel="stylesheet" href="{% static 'lib/css/collection.css' %}">
|
|
<link rel="search"type="application/opensearchdescription+xml" title="{{ site_name }}" href="{% static 'opensearch.xml' %}">
|