aboutsummaryrefslogtreecommitdiff
path: root/templates/header.html
diff options
context:
space:
mode:
authorGabriel A. Giovanini <mail@gabrielgio.me>2022-06-09 20:10:19 +0200
committerGabriel A. Giovanini <mail@gabrielgio.me>2022-06-09 20:10:19 +0200
commitb4472b41214eeeacce071df41bf0f782e1f16d6d (patch)
treeefb666792785ba98c177990cfc349cdb9d6a56c7 /templates/header.html
parente44658641b75076b702e690df166820c1d133f24 (diff)
downloadmacroblog.rs-b4472b41214eeeacce071df41bf0f782e1f16d6d.tar.gz
macroblog.rs-b4472b41214eeeacce071df41bf0f782e1f16d6d.tar.bz2
macroblog.rs-b4472b41214eeeacce071df41bf0f782e1f16d6d.zip
feat: Move from pico to custom css
Use css from my current blog, which is a lot smaller. The text itself looks good but the code still breaks the page. Metrics: - hyper: 16.37 KB / 16.47 KB transferred - 1 request
Diffstat (limited to 'templates/header.html')
-rw-r--r--templates/header.html18
1 files changed, 10 insertions, 8 deletions
diff --git a/templates/header.html b/templates/header.html
index 1340aa1..c830273 100644
--- a/templates/header.html
+++ b/templates/header.html
@@ -1,10 +1,12 @@
<header class="container">
- <nav class="container-fluid">
- <ul>
- <li><h2><a href="/">Yet Another Blog</a></h2></li>
- </ul>
- <ul>
- <li><a href="https://gitlab.com/gabrielgio/cv/-/raw/main/cv.pdf?inline=false" class="secondary">Resume</a></li>
- </ul>
- </nav>
+ <div class="title-wrapper">
+ <a href="/">
+ <h2 class="title">Yet Another Blog</h2>
+ </a>
+ <nav class="container-fluid">
+ <ul>
+ <li><a href="https://gitlab.com/gabrielgio/cv/-/raw/main/cv.pdf?inline=false" class="secondary">Resume</a></li>
+ </ul>
+ </nav>
+ </div>
</header>