poinikos.wordmord-ur.la/templates/base.html

25 lines
687 B
HTML
Raw Normal View History

2022-03-21 11:50:41 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="../static/styles.css"
/>
<link rel="icon" href="/static/images/tongue-emoji.png">
<!--href="{{ url_for('static', filename='styles.css') }}"-->
<title>{% block title %} {% endblock %} Ποινικός Κώδικας WordMord</title>
</head>
<body>
<!-- <nav class="navbar navbar-expand-md navbar-light">
<a href="/">Wordmord</a>
<a href="/about">About</a>
</nav> -->
<div class="content">
{% block content %} {% endblock %}
</div>
</body>
</html>