104 lines
2.7 KiB
HTML
104 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>MusicBrainz RSS Feeder</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<style>
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
background-color: #fdfdfd;
|
|
margin: 0;
|
|
}
|
|
.container {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding-bottom: 20px;
|
|
border-bottom: 1px solid #eee;
|
|
margin-bottom: 20px;
|
|
}
|
|
header h1 {
|
|
font-size: 24px;
|
|
margin: 0;
|
|
}
|
|
header h1 a {
|
|
text-decoration: none;
|
|
color: #333;
|
|
}
|
|
nav a {
|
|
margin-left: 20px;
|
|
text-decoration: none;
|
|
color: #555;
|
|
}
|
|
h2, h3 {
|
|
border-bottom: 1px solid #eee;
|
|
padding-bottom: 10px;
|
|
margin-top: 40px;
|
|
}
|
|
ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
li {
|
|
padding: 10px 0;
|
|
border-bottom: 1px solid #eee;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
li:last-child {
|
|
border-bottom: none;
|
|
}
|
|
form {
|
|
margin-top: 20px;
|
|
}
|
|
input[type="text"] {
|
|
width: 100%;
|
|
padding: 8px;
|
|
box-sizing: border-box;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
}
|
|
button {
|
|
background-color: #333;
|
|
color: white;
|
|
padding: 8px 15px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
}
|
|
button:hover {
|
|
background-color: #555;
|
|
}
|
|
.form-inline {
|
|
display: inline;
|
|
margin-top: 0;
|
|
}
|
|
.item-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<header>
|
|
<h1><a href="{{ url_for('index') }}">MusicBrainz RSS Feeder</a></h1>
|
|
<nav>
|
|
<a href="{{ url_for('index') }}">Feeds</a>
|
|
<a href="{{ url_for('settings') }}">Settings</a>
|
|
</nav>
|
|
</header>
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html> |