20 lines
630 B
HTML
20 lines
630 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<meta name="description" content="Personal website of Hadeed Ahmad" />
|
|
<meta property="og:title" content="Hadeed Ahmad" />
|
|
<meta property="og:type" content="website" />
|
|
|
|
<link rel="stylesheet" href="{{ get_url(path="styles.css") }}">
|
|
|
|
<title>{% block title %}Hadeed Ahmad{% endblock %}</title>
|
|
</head>
|
|
<body class="bg-white text-black font-sans">
|
|
<div class="max-w-3xl mx-auto p-4">
|
|
{% block content %} {% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|