diff options
author | Hygna <hygna@proton.me> | 2022-09-16 19:33:39 +0100 |
---|---|---|
committer | Hygna <hygna@proton.me> | 2022-09-16 19:33:39 +0100 |
commit | 4c1099771caba798573f147fc08e5a474fc7a81b (patch) | |
tree | a836feb6245257d9b1f733f5d64c99c2b4680852 /src/pages/options | |
parent | Fixed ejs ending tags (diff) | |
download | libredirect-4c1099771caba798573f147fc08e5a474fc7a81b.zip |
More ejs progress
Diffstat (limited to 'src/pages/options')
-rw-r--r-- | src/pages/options/index.ejs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/pages/options/index.ejs b/src/pages/options/index.ejs new file mode 100644 index 00000000..c17d1f0a --- /dev/null +++ b/src/pages/options/index.ejs @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html id="elementToShowWithJavaScript" lang="en"> + <%- include('../widgets/head') %> + <body class="option" dir="auto"> + <div id="pages"> + <%- include('../widgets/links', {config: config}) %> + <%- include('widgets/general', {config: config}) %> + <%- include('widgets/services', {config: config}) %> + <%- include('widgets/about') %> + </div> + </body> + <script type="module" src="./index.js"></script> +</html> |