diff options
Diffstat (limited to 'layouts/partials/site-actions.html')
-rw-r--r-- | layouts/partials/site-actions.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/layouts/partials/site-actions.html b/layouts/partials/site-actions.html new file mode 100644 index 0000000..ac9013a --- /dev/null +++ b/layouts/partials/site-actions.html | |||
@@ -0,0 +1,18 @@ | |||
1 | <div id="actions" class="fixed flex row aligned right"> | ||
2 | <button id="darkmode"> | ||
3 | <span class="icon" id="lightmode-icon"> | ||
4 | {{ partial "func/GetSvg" "Lightmode.svg" }} | ||
5 | </span> | ||
6 | <span class="icon hide" id="darkmode-icon"> | ||
7 | {{ partial "func/GetSvg" "Darkmode.svg" }} | ||
8 | </span> | ||
9 | </button> | ||
10 | <button id="fullscreen" class="flex row centered" title="fullscreen toggle"> | ||
11 | <span class="icon" id="fullscreen-icon"> | ||
12 | {{ partial "func/GetSvg" "Fullscreen.svg" }} | ||
13 | </span> | ||
14 | <span class="icon hide" id="smallscreen-icon"> | ||
15 | {{ partial "func/GetSvg" "Smallscreen.svg" }} | ||
16 | </span> | ||
17 | </button> | ||
18 | </div> \ No newline at end of file | ||