You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<link rel="shortcut icon" type="image/png" href="/favicon.png?type=png" />
|
|
|
|
<title>{{ "Folk Tunes"|translate }} | {% block PageTitle %}{% endblock %}</title>
|
|
|
|
<link rel="stylesheet" href="/Static/CSS/Mapper.css">
|
|
|
|
<link rel="stylesheet" href="/Static/CSS/Themes/Light.css">
|
|
|
|
|
|
|
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/algoliasearch/dist/algoliasearch-lite.umd.js"></script>
|
|
|
|
<script src="/Static/JS/ThirdParty/ABCJS.js"></script>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
const client = algoliasearch('{{ _ALGOLIA_APP_ID_ }}', '{{ _ALGOLIA_SEARCH_ONLY_API_KEY_ }}');
|
|
|
|
const index = client.initIndex('{{ _ALGOLIA_INDEX_NAME_ }}');
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script src="/Static/JS/General/ABCWrapper.js"></script>
|
|
|
|
<script src="/Static/JS/General/AlgoliaInteractions.js"></script>
|
|
|
|
<script src="/Static/JS/General/APIInteractions.js"></script>
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div class="wrapper">
|
|
|
|
<div class="main_container">
|
|
|
|
<main>
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|