1
Fork 0
personal_website/templates/base.html

12 lines
263 B
HTML
Raw Normal View History

2024-10-07 08:41:53 +00:00
<!doctype html>
2024-04-25 15:30:42 +00:00
<html lang="en">
2024-10-07 08:41:53 +00:00
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home - Hadeed Ahmad</title>
</head>
<body>
2024-11-25 14:39:14 +00:00
{% block content %} {% endblock %}
2024-10-07 08:41:53 +00:00
</body>
2023-08-21 16:06:47 +00:00
</html>