12 lines
325 B
Twig
12 lines
325 B
Twig
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>{{ site.title }}</title>
|
||
|
<link href="https://cdn.jsdelivr.net/npm/tailwindcss/dist/tailwind.min.css" rel="stylesheet">
|
||
|
</head>
|
||
|
<body class="text-black">
|
||
|
{% block content %}{% endblock %}
|
||
|
</body>
|
||
|
</html>
|