51 lines
1.6 KiB
HTML
51 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism-tomorrow.min.css">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}RasmusBendtsen.dk{% endblock %}</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<nav class="container">
|
|
<a href="/" class="logo">RasmusBendtsen.dk</a>
|
|
<ul class="nav-links">
|
|
<li><a href="/">Home</a></li>
|
|
<li><a href="/about">About</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
<main class="container">
|
|
<div class="layout-wrapper">
|
|
<section class="content-area">
|
|
{% block content %}{% endblock %}
|
|
</section>
|
|
|
|
<aside class="sidebar">
|
|
<div class="sidebar-section">
|
|
<h3>Tags</h3>
|
|
<ul class="tag-list">
|
|
{% for tag in all_cloud_tags %}
|
|
<li><a href="{{ url_for('tag', tag_name=tag) }}">#{{ tag }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</aside>
|
|
</div>
|
|
</main>
|
|
<footer>
|
|
</footer>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js"></script>
|
|
<script
|
|
src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/plugins/autoloader/prism-autoloader.min.js"></script>
|
|
</body>
|
|
|
|
</html> |