aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorA Farzat <a@farzat.xyz>2024-11-21 22:30:36 +0900
committerA Farzat <a@farzat.xyz>2024-11-21 22:30:36 +0900
commitc8b6114a908a5e42ffa19a93236cc7133aec685e (patch)
tree60599d0bd35e0f3d2cbde3d34062d9d75b20a949 /templates
parent17478f87e5aa333f40ab70447bb11554a0c64ad6 (diff)
downloadfarzat.xyz-c8b6114a908a5e42ffa19a93236cc7133aec685e.tar.gz
farzat.xyz-c8b6114a908a5e42ffa19a93236cc7133aec685e.zip
Remove main__container
Didn't seem necessary for now. Also cleaned up a little.
Diffstat (limited to 'templates')
-rw-r--r--templates/base.html6
1 files changed, 2 insertions, 4 deletions
diff --git a/templates/base.html b/templates/base.html
index 056e259..2506540 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="/style.css">
<title>{% block title %} Farzat's website {% endblock %}</title>
- <script defer src="/js/dark_theme.js"></script>
+ <!-- <script defer src="/js/dark_theme.js"></script> -->
<link rel="icon" type="image/x-icon" href="/img/svgo/kaaba.svg">
</head>
<body>
@@ -18,9 +18,7 @@
</a>
</header>
<section class="main">
- <div class="main__container">
- {% block content %} {% endblock %}
- </div>
+ {% block content %} {% endblock %}
</section>
</body>
</html>