blob: 98458accdb32f259636f892d90d1d88c1aa13105 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- TODO: add title and desc -->
<title>BLOG TITLE | Skullheadx</title>
<meta name="description" content="BLOG DESC">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="/style.css">
<link rel="icon" href="/favicon.ico">
</head>
<body class="blog">
<div class="blog-wrapper">
<header class="main-head" id="top">
<h1><a href="index.html">Skullheadx's Blog</a></h1>
</header>
<nav class="main-nav">
<section>
<ul>
<li><a href="../index.html">Main Page</a></li>
<li><a href="index.html">All Posts</a></li>
<!-- TODO: Remember to change this to the tag that it belong to -->
<li><a href="../tech/index.html">Technology Posts</a></li>
</ul>
</section>
</nav>
<main class="content">
<article class="blog-post">
<!-- TODO: add content -->
<hgroup>
<h3>BLOG TITLE</h3>
<p>Published: <time datetime="2026-07-04">July 4, 2026</time></p>
</hgroup>
<p>BLOG SENTENCE</p>
<h4>BLOG SUBHEADING</h4>
<div class="code-block">
<pre><code>BLOG CODE</code></pre>
</div>
<p> <code>BLOG INLINE CODE</code>
<ul class="list-disc">
<li>Manage dotfiles, and put them in the right place</li>
<li>Download and install packages, keeping them locked at the right version and isolating their dependencies.</li>
<li>Start services</li>
</ul>
</article>
</main>
<footer class="main-footer">
<p>Return to <a href="#top">top?</a></p>
<p><a href="https://skullheadx.com">https://skullheadx.com</a></p>
</footer>
</div>
</body>
</html>
|