26 lines
721 B
HTML
26 lines
721 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="description" content="Astro description" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title>alecodes.page</title>
|
|
<ViewTransitions />
|
|
|
|
{% block scripts %}<script src="/js/index.js"></script>{% endblock %}
|
|
<link rel="stylesheet" href="/css/style.css" />
|
|
|
|
</head>
|
|
|
|
<body transition:animate="fade">
|
|
{% include "partials/header.html" %}
|
|
<main>
|
|
<nav class="msp-d-sm-none msp-d-flex msp-justify-content-end">
|
|
<button class="msp-offcanvas-toggle" data-msp-target="#main-offcanvas">Toggle</button>
|
|
</nav>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</body>
|
|
|
|
</html>
|