Revert "feat: separated footer, header and <head> files"

This reverts commit a46bff2b7d.
This commit is contained in:
Vitor Gonçalves 2023-06-19 00:06:35 -03:00
parent a46bff2b7d
commit c02cb64d74
Signed by: vitorg
GPG Key ID: B90BF113DF56EB41
4 changed files with 14 additions and 17 deletions

View File

@ -1,4 +0,0 @@
<footer class=block class="text">
<p>made by <a href="/">~vitorg</a> with love.<br>
check out <a href="https://vern.cc">~vern</a>!</p>
</footer>

View File

@ -1,2 +0,0 @@
<meta charset="UTF-8">
<link rel="stylesheet" href="/style.css">

View File

@ -1,8 +0,0 @@
<header class="block" class="text">
<h1><a href="/">~vitorg</a></h1>
<nav>
<a href="/about">about me</a>
<a href="/blog">blog</a>
<a href="/tinylog">tinylog</a>
</nav>
</header>

View File

@ -1,11 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<!-- #include file="_head.html" -->
<meta charset="UTF-8">
<title>~vitorg</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<!-- #include file="_header.html" -->
<header class="block" class="text">
<h1><a href="/">~vitorg</a></h1>
<nav>
<a href="/about">about me</a>
<a href="/blog">blog</a>
<a href="/tinylog">tinylog</a>
</nav>
</header>
<article class="block">
<div class="text">
@ -16,6 +24,9 @@
</div>
</article>
<!-- #include file="_footer.html" -->
<footer class=block class="text">
<p>made by <a href="/">~vitorg</a> with love.<br>
check out <a href="https://vern.cc">~vern</a>!</p>
</footer>
</body>
</html>