163 lines
3.6 KiB
HTML
163 lines
3.6 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>{% block title %}RSS Feed Manager{% endblock %}</title>
|
||
|
|
<style>
|
||
|
|
* {
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
font-family: arial, sans-serif;
|
||
|
|
background-color: #fff;
|
||
|
|
color: #202124;
|
||
|
|
}
|
||
|
|
|
||
|
|
.header {
|
||
|
|
padding: 20px 30px;
|
||
|
|
border-bottom: 1px solid #ebebeb;
|
||
|
|
}
|
||
|
|
|
||
|
|
.header a {
|
||
|
|
color: #202124;
|
||
|
|
text-decoration: none;
|
||
|
|
font-size: 22px;
|
||
|
|
font-weight: normal;
|
||
|
|
}
|
||
|
|
|
||
|
|
.header a:hover {
|
||
|
|
text-decoration: underline;
|
||
|
|
}
|
||
|
|
|
||
|
|
.container {
|
||
|
|
max-width: 1200px;
|
||
|
|
margin: 0 auto;
|
||
|
|
padding: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn {
|
||
|
|
background-color: #f8f9fa;
|
||
|
|
border: 1px solid #f8f9fa;
|
||
|
|
border-radius: 4px;
|
||
|
|
color: #3c4043;
|
||
|
|
font-family: arial, sans-serif;
|
||
|
|
font-size: 14px;
|
||
|
|
padding: 8px 16px;
|
||
|
|
cursor: pointer;
|
||
|
|
text-decoration: none;
|
||
|
|
display: inline-block;
|
||
|
|
margin: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn:hover {
|
||
|
|
background-color: #f1f3f4;
|
||
|
|
border: 1px solid #dadce0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-primary {
|
||
|
|
background-color: #1a73e8;
|
||
|
|
border: 1px solid #1a73e8;
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-primary:hover {
|
||
|
|
background-color: #1765cc;
|
||
|
|
border: 1px solid #1765cc;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-danger {
|
||
|
|
background-color: #d93025;
|
||
|
|
border: 1px solid #d93025;
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-danger:hover {
|
||
|
|
background-color: #c5221f;
|
||
|
|
border: 1px solid #c5221f;
|
||
|
|
}
|
||
|
|
|
||
|
|
input[type="text"],
|
||
|
|
input[type="file"],
|
||
|
|
select {
|
||
|
|
border: 1px solid #dfe1e5;
|
||
|
|
border-radius: 24px;
|
||
|
|
padding: 10px 20px;
|
||
|
|
font-size: 14px;
|
||
|
|
font-family: arial, sans-serif;
|
||
|
|
width: 100%;
|
||
|
|
outline: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
input[type="text"]:focus,
|
||
|
|
select:focus {
|
||
|
|
border: 1px solid #1a73e8;
|
||
|
|
}
|
||
|
|
|
||
|
|
.form-group {
|
||
|
|
margin-bottom: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
label {
|
||
|
|
display: block;
|
||
|
|
margin-bottom: 8px;
|
||
|
|
font-size: 14px;
|
||
|
|
color: #5f6368;
|
||
|
|
}
|
||
|
|
|
||
|
|
table {
|
||
|
|
width: 100%;
|
||
|
|
border-collapse: collapse;
|
||
|
|
background-color: #fff;
|
||
|
|
margin-top: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
th, td {
|
||
|
|
padding: 12px;
|
||
|
|
text-align: left;
|
||
|
|
border-bottom: 1px solid #ebebeb;
|
||
|
|
}
|
||
|
|
|
||
|
|
th {
|
||
|
|
background-color: #f8f9fa;
|
||
|
|
font-weight: 500;
|
||
|
|
font-size: 14px;
|
||
|
|
color: #5f6368;
|
||
|
|
}
|
||
|
|
|
||
|
|
tr:hover {
|
||
|
|
background-color: #f8f9fa;
|
||
|
|
}
|
||
|
|
|
||
|
|
.actions {
|
||
|
|
display: flex;
|
||
|
|
gap: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.stats {
|
||
|
|
background-color: #f8f9fa;
|
||
|
|
border-radius: 8px;
|
||
|
|
padding: 16px;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
font-size: 14px;
|
||
|
|
color: #5f6368;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
{% block extra_css %}{% endblock %}
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="header">
|
||
|
|
<a href="/">RSS Feed Manager</a>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="container">
|
||
|
|
{% block content %}{% endblock %}
|
||
|
|
</div>
|
||
|
|
|
||
|
|
{% block extra_js %}{% endblock %}
|
||
|
|
</body>
|
||
|
|
</html>
|