refactor: make styles, js common for posts

This commit is contained in:
Barrett Ruth 2024-06-15 14:35:39 -05:00
parent 3865436f75
commit 2a8c3194d1
7 changed files with 143 additions and 87 deletions

View file

@ -4,13 +4,25 @@
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="../styles/index.css" />
<link rel="stylesheet" href="../styles/common.css" />
<link rel="stylesheet" href="../styles/post.css" />
<link rel="icon" type="image/webp" href="../public/logo.webp" />
<title>Barrett Ruth</title>
</head>
<body>
<main class="main">main</main>
<footer>foot</footer>
<script src="../scripts/index.js"></script>
<header>
<a href="/" onclick="home(event)">
<div class="terminal-prompt">
<span class="prompt">barrett@ruth:~$</span>
<span class="cursor"></span>
</div>
</a>
</header>
<main class="main">
<ul>
<li>hi</li>
</ul>
</main>
<script src="../scripts/common.js"></script>
</body>
</html>