move to root directory

This commit is contained in:
Osman Faruk Bayram 2025-04-28 16:40:32 +03:00
parent 74681d0be6
commit d4b75f60e6
20 changed files with 0 additions and 0 deletions

17
templates/pages/base.html Normal file
View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.5/dist/css/bootstrap.min.css" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% block title %}Base Template{% endblock title %}
</head>
<body>
{% block content %}
{% endblock content %}
</body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.5/dist/js/bootstrap.bundle.min.js"></script>
</html>