kycnot.me/templates/base.html
2021-09-13 13:16:21 +02:00

112 lines
2.6 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="referrer" content="no-referrer" />
<link
rel="stylesheet"
type="text/css"
href="../static/css/bulma-dark.min.css"
/>
<link href="../static/fa/css/all.min.css" rel="stylesheet" />
<link
rel="shortcut icon"
href="../static/img/favicon.png"
type="image/x-icon"
/>
<title>KYC? Not me!</title>
</head>
<body>
<div class="links-container">
<div class="nav-menu">
<a class="link-item" href="/">Exchanges</a>
<a class="link-item" href="/services">Services</a>
<a class="link-item" href="/about">About</a>
</div>
</div>
<!--<section class="section news-section">
<div class="container news-container">
<h6 style="color: rgb(82, 82, 82)" class="subtitle is-6">
<i class="fas fa-pen"></i> Last Update: {{date}}
</h6>
</div>
</section>-->
<section class="section title-section">
<div class="container title-container">
<h1 class="title">
<strong> {{title | safe}} </strong>
</h1>
<p class="subtitle">{{subtitle | safe}}</p>
</div>
</section>
{% block content %}{% endblock %}
<div class="links-container">
<a
class="link-item"
href="https://codeberg.org/pluja/kycnot.me"
target="_blank"
><i class="fas fa-code"></i
></a>
<a class="link-item" href="/about#support"
><i class="fas fa-heart"></i
></a>
</div>
</body>
<style>
.title-section {
margin-bottom: 3px;
padding-bottom: 2px;
}
.title-container {
place-items: center;
display: grid;
}
.news-section {
margin: 1px !important;
padding: 8px !important;
}
.news-container {
place-items: center;
display: grid;
text-align: center;
}
.nav-menu {
text-align: center;
font-size: x-large;
border-bottom: 0.5px #00b199 solid;
/*border-bottom: 0.5px rgba(226, 226, 226, 0.624) solid;*/
padding: 0px !important;
margin-bottom: 1px;
width: 30vw;
}
.nav-menu > a {
color: rgba(211, 211, 211, 0.535) !important;
}
.nav-menu > a:hover {
color: rgba(124, 124, 124, 0.535) !important;
}
.links-container {
display: flex;
justify-content: center;
font-size: large;
padding-top: 10px;
}
.link-item {
margin: 5px;
}
</style>
</html>