This repository has been archived on 2024-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
negromate_origins/web/negromateweb/templates/base.html

40 lines
1.6 KiB
HTML
Raw Normal View History

2018-10-12 23:00:20 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Negro Mate</title>
<link href="{{ root_path }}static/js/videojs/video-js.css" rel="stylesheet">
<link href="{{ root_path }}static/js/libjass/lib/libjass.css" rel="stylesheet">
<link href="{{ root_path }}static/js/videojs-playlist-ui/dist/videojs-playlist-ui.vertical.css" rel="stylesheet">
2018-10-12 23:00:20 +02:00
<link href="{{ root_path }}static/css/main.css" rel="stylesheet">
<script>
window.HELP_IMPROVE_VIDEOJS = false;
</script>
<script src="{{ root_path}}static/js/videojs/video.js"></script>
<script src="{{ root_path}}static/js/libjass/lib/libjass.js"></script>
<script src="{{ root_path}}static/js/videojs-playlist/dist/videojs-playlist.js"></script>
<script src="{{ root_path}}static/js/videojs-playlist-ui/dist/videojs-playlist-ui.js"></script>
2018-10-12 23:00:20 +02:00
<script src="{{ root_path}}static/js/videojs-ass/src/videojs.ass.js"></script>
</head>
<body>
<header id="header">
<h1><a href="{{ root_path }}home/">Negro Mate</a></h1>
2018-10-12 23:00:20 +02:00
</header>
<div id="content">
{% block content %}{% endblock %}
</div>
{% block page %}
2018-10-12 23:00:20 +02:00
<nav id="menu">
<ul>
{% for item in songs %}
2018-10-12 23:00:20 +02:00
<li><a href="{{ item.path|url }}">{{ item.name }}</a></li>
{% endfor %}
</ul>
<p id="playlist"><a href="{{ root_path }}playlist/">Playlist</a></p>
2018-10-12 23:00:20 +02:00
<p id="libreto"><a href="{{ root_path }}static/libreto/libreto.pdf"><img src="{{ root_path }}static/libreto/libreto.png">Libreto</a>
</nav>
{% endblock %}
2018-10-12 23:00:20 +02:00
</body>
</html>