23 lines
634 B
HTML
23 lines
634 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" data-theme="light" data-sidebar="shown">
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<meta charset="UTF-8">
|
|
<title>nixfox den</title>
|
|
|
|
<!-- Stylesheets -->
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono">
|
|
<link rel="stylesheet" href="/style.css">
|
|
<link rel="stylesheet" href="/sidebar.css">
|
|
</head>
|
|
|
|
<body>
|
|
{% include "sidebar.html" %}
|
|
|
|
<div id="main" class="column">
|
|
<div class="container">
|
|
{% block content %} {% endblock content %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|