Files
cjsatnarine.space/blog/templates/base.html
CJSatnarine 6f5a806d24 aughhhh
2025-03-15 23:14:24 -04:00

21 lines
360 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ config.extra.site_name }}</title>
<link rel="stylesheet" href="{{ get_url(path="/extra.css") }}" />
</head>
<body>
<section class="section">
<div class="container">
{% block content %} {% endblock %}
</div>
</section>
</body>
</html>