18 lines
834 B
HTML
18 lines
834 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" data-theme="dark">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}{{ config.title }}{% endblock %}</title>
|
|
<meta name="description" content="{{ config.description }}">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500&family=Outfit:wght@200;300;400;500;600&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="{{ get_url(path='css/style.css') }}">
|
|
</head>
|
|
<body>
|
|
{% block body %}{% endblock %}
|
|
<script src="{{ get_url(path='js/main.js') }}"></script>
|
|
</body>
|
|
</html>
|