pecha.red/templates/base.html

35 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{% block title %}{% endblock %} - pecha.red</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- <link rel="stylesheet" href="https://kit-free.fontawesome.com/releases/latest/css/free.min.css"> -->
<link rel='stylesheet' type='text/css' href="{{ url_for('static', filename='style.css') }}" />
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,700&display=swap"> -->
<!-- <script src="{{ url_for('static', filename='script.js') }}"></script> -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
<link rel='stylesheet' type='text/css' href="{{ url_for('static', filename='fonts/style.css') }}" />
</head>
<body>
<header>
{% if big_header %}
<div id='big-header'>
<h1>PECHA.RED</h1>
<div id='subtitle'>THE WORST IS YET TO COME</div>
</div>
{% endif %}
<nav>
<a href="/">HOME</a>
<a href="/writings">WRITINGS</a>
<a href="/library">LIBRARY</a>
<a href="https://petra.press">BLOG</a>
<a href="https://git.bune.city/petra-fied">GIT</a>
<a href="/contact">CONTACT</a>
</nav>
</header>
{% block content %}{% endblock %}
</body>
</html>