aboutsummaryrefslogtreecommitdiff
path: root/templates/_head.tmpl
diff options
context:
space:
mode:
authorGabriel A. Giovanini <mail@gabrielgio.me>2022-06-16 16:32:31 +0200
committerGabriel A. Giovanini <mail@gabrielgio.me>2022-06-16 16:32:31 +0200
commitda992500f806bb87b06559d920ee12b7680955ee (patch)
treed535f986eba7a95e5cb6b358259bc37ca6fa7ca9 /templates/_head.tmpl
parent64496464b3812839c1e4b440bdf69cc84f39c491 (diff)
downloadmdir-da992500f806bb87b06559d920ee12b7680955ee.tar.gz
mdir-da992500f806bb87b06559d920ee12b7680955ee.tar.bz2
mdir-da992500f806bb87b06559d920ee12b7680955ee.zip
feat: Add worker
Add a simple worker to manage a work queue. Right now, it is bit brittled and has no test coverage yet, but it works. Also moved from pico.css to bulma, I like the idea of classes approach of pico but for me bulma yields a better result.
Diffstat (limited to 'templates/_head.tmpl')
-rw-r--r--templates/_head.tmpl17
1 files changed, 6 insertions, 11 deletions
diff --git a/templates/_head.tmpl b/templates/_head.tmpl
index da96a57..2bb58c4 100644
--- a/templates/_head.tmpl
+++ b/templates/_head.tmpl
@@ -2,17 +2,12 @@
<!DOCTYPE html>
<html>
<head>
- <link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.min.css">
+ <link rel="stylesheet" href="/assets/bulma.min.css">
</head>
<body>
- <header class="container">
- <nav>
- <ul>
- <li><a href="/"><strong>Home</strong></a></li>
- </ul>
- <ul>
- </ul>
- </nav>
- </header>
- <main class="container">
+ <section class="section">
+ <div class="container">
+ <h1><a href="/"><strong>Home</strong></a></h1>
+ </div>
+ <main class="container">
{{ end }}