aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
authorGabriel A. Giovanini <mail@gabrielgio.me>2022-05-05 23:15:41 +0200
committerGabriel A. Giovanini <mail@gabrielgio.me>2022-05-05 23:15:41 +0200
commite7c5dc01cf3bf382c82dd6984808bd3ca21d33a5 (patch)
treeb1f1d6fd9e8bc4814f8c8f541456519660bbe2b1 /templates/index.html
downloadmacroblog.rs-e7c5dc01cf3bf382c82dd6984808bd3ca21d33a5.tar.gz
macroblog.rs-e7c5dc01cf3bf382c82dd6984808bd3ca21d33a5.tar.bz2
macroblog.rs-e7c5dc01cf3bf382c82dd6984808bd3ca21d33a5.zip
Initial commit
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html49
1 files changed, 49 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..90826de
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,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> \ No newline at end of file