Files
neocities/_layouts/default.html
bvanroll d362343f02
All checks were successful
deploy to neocities / Build and deploy Jekyll site (push) Successful in 30s
ok
2025-08-24 14:08:43 +02:00

25 lines
550 B
HTML

<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width">
<meta charset="utf-8">
<link rel="stylesheet" href="/css/main.css">
<script src="/js/main.js"></script>
<title>{{ page.title }}</title>
</head>
<body>
<div class="header">
<img src="/img/logo.png"><h1>
beppe.online
</h1></img>
</div>
<div class="container">
{% include nav.html %}
<div class="content">
{{ content }}
</div>
{% include footer.html %}
</div>
</body>
</html>