michalvankodev-site/axum_server/templates/base.html
Michal Vanko f42ebc7044
Some checks failed
test / cargo test (push) Failing after 1m6s
tired of this font sheiad
2024-09-28 13:09:01 +02:00

36 lines
1.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<title>{% block title %} {{title}} {% endblock %} @michalvankodev</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<meta name="theme-color" content="#333333" />
<meta name="description" content="Personal website of @michalvankodev" />
<meta name="keywords" content="personal, blog, webdev, tech, programming" />
<meta name="robots" content="index, follow" />
<link
rel="alternate"
type="application/rss+xml"
title="RSS feed for latest posts"
href="/feed.xml"
/>
<!-- Tailwind output file -->
<link rel="stylesheet" href="/styles/output.css" />
<link rel="manifest" href="/manifest.json" />
<link rel="icon" type="image/svg+xml" href="/images/m-logo.svg" />
<link rel="icon" type="image/png" href="/images/m-logo-192.png" />
</head>
<body class="bg-blue-50">
<div class="preload-assets" style="display: none">
{% include "icons/sprite.svg" %}
</div>
{% include "site_header.html" %}
{% block content %} Placeholder {% endblock %}
{% include "site_footer.html" %}
</body>
</html>