This commit is contained in:
CJSatnarine
2025-03-15 23:14:24 -04:00
parent 955979513e
commit 6f5a806d24
16 changed files with 2540 additions and 3 deletions

20
blog/templates/base.html Normal file
View File

@@ -0,0 +1,20 @@
<!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>