aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
blob: 90826de8e10534c0ce4fd7e9d947d98225630fe8 (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
<!DOCTYPE html>
<html data-theme="light" lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Yet Another Blog</title>
    <style>
        <%- pico %>
    </style>
</head>
<body>
<header class="container">
    <nav class="container-fluid">
        <ul>
            <li><strong>Yet Another Blog</strong></li>
        </ul>
        <ul>
            <li><a class="secondary">Posts</a></li>
            <li><a class="secondary">Projects</a></li>
            <li><a class="secondary">Resume</a></li>
        </ul>
    </nav>
    <hgroup>
        <h2>
            A gathering of information about some things I do on my spare time. You can find me on gitlab , twitter and
            linkedin .
        </h2>
    </hgroup>
</header>

<main class="container">
    <section>
        <ul>
            <li><a>K8S private gitlab registry using podman</a></li>
            <li><a>K8S private gitlab registry using podman</a></li>
        </ul>
    </section>
    <section>
        <h2>Title</h2>
        <p>
            Nice content
            <code>
                My code here
            </code>
        </p>
    </section>
</main>
</body>
</html>