diff options
author | Zach Berwaldt <zberwaldt@tutamail.com> | 2023-10-09 13:41:04 -0400 |
---|---|---|
committer | Zach Berwaldt <zberwaldt@tutamail.com> | 2023-10-09 13:48:07 -0400 |
commit | 4e30ae95eaf52a7f427bdf020d118f40e00ab291 (patch) | |
tree | a270827b339c8c40274b41fabedcb0ec3b4afb3b /layouts/partials/site-actions.html | |
parent | 93a4ba55f2159e69aa1fcdaa1cf87c09e7455017 (diff) |
add some homemade svg, wpartials, and darkmode
Diffstat (limited to 'layouts/partials/site-actions.html')
-rw-r--r-- | layouts/partials/site-actions.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/layouts/partials/site-actions.html b/layouts/partials/site-actions.html new file mode 100644 index 0000000..b9afa66 --- /dev/null +++ b/layouts/partials/site-actions.html | |||
@@ -0,0 +1,12 @@ | |||
1 | <div id="actions" class="fixed flex row aligned right"> | ||
2 | <button id="darkmode">Dark Mode</button> | ||
3 | <button id="fullscreen" class="flex row centered" title="fullscreen toggle"> | ||
4 | <div class="icon" id="fullscreen-icon"> | ||
5 | {{ partial "func/GetSvg" "Fullscreen.svg" }} | ||
6 | </div> | ||
7 | <div class="icon hide" id="smallscreen-icon"> | ||
8 | {{ partial "func/GetSvg" "Smallscreen.svg" }} | ||
9 | </div> | ||
10 | or [/] | ||
11 | </button> | ||
12 | </div> \ No newline at end of file | ||