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.
50 lines
1.5 KiB
50 lines
1.5 KiB
<!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>
|
|
const client = algoliasearch('{{ _ALGOLIA_APP_ID_ }}', '{{ _ALGOLIA_SEARCH_ONLY_API_KEY_ }}');
|
|
const tuneIndex = client.initIndex('{{ _ALGOLIA_INDEXES_.Tunes }}');
|
|
const danceIndex = client.initIndex('{{ _ALGOLIA_INDEXES_.Dances }}');
|
|
</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">
|
|
<nav>
|
|
<ul>
|
|
<li><a href="/">Home</a></li>
|
|
<li>
|
|
<input type="text" placeholder="Search for tunes...">
|
|
</li>
|
|
{% if _SESSION_.IS_LOGGED_IN %}
|
|
<li style="float:right"><a class="active" href="/profile">My Account</a></li>
|
|
{% else %}
|
|
<li style="float:right"><a class="active" href="/login">Login</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</nav>
|
|
<main>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|