├── .gitignore
├── Screenshots
├── 1.png
├── 2.png
├── 3.png
├── 4.png
├── 5.png
├── 6.png
├── 7.png
└── 8.png
├── htdocs
└── luci-static
│ ├── edge
│ ├── logo.png
│ ├── favicon.ico
│ ├── background
│ │ ├── 1.jpg
│ │ ├── 2.jpg
│ │ └── 3.jpg
│ ├── fonts
│ │ └── argon.woff
│ ├── icons
│ │ ├── arrow.svg
│ │ └── spinner.svg
│ ├── sun.svg
│ ├── custom.css
│ ├── glare.svg
│ ├── waves.css
│ ├── js
│ │ ├── script.js
│ │ └── jquery.min.js
│ └── landscape.css
│ └── resources
│ └── menu-edge.js
├── root
└── etc
│ └── uci-defaults
│ └── 30_luci-theme-edge
├── Makefile
├── luasrc
└── view
│ ├── themes
│ └── edge
│ │ ├── footer.htm
│ │ ├── header_login.htm
│ │ ├── sysauth.htm
│ │ └── header.htm
│ └── header_login.htm
└── README.md
/.gitignore:
--------------------------------------------------------------------------------
1 | /Screenshots
2 |
--------------------------------------------------------------------------------
/Screenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kiddin9/luci-theme-edge/HEAD/Screenshots/1.png
--------------------------------------------------------------------------------
/Screenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kiddin9/luci-theme-edge/HEAD/Screenshots/2.png
--------------------------------------------------------------------------------
/Screenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kiddin9/luci-theme-edge/HEAD/Screenshots/3.png
--------------------------------------------------------------------------------
/Screenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kiddin9/luci-theme-edge/HEAD/Screenshots/4.png
--------------------------------------------------------------------------------
/Screenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kiddin9/luci-theme-edge/HEAD/Screenshots/5.png
--------------------------------------------------------------------------------
/Screenshots/6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kiddin9/luci-theme-edge/HEAD/Screenshots/6.png
--------------------------------------------------------------------------------
/Screenshots/7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kiddin9/luci-theme-edge/HEAD/Screenshots/7.png
--------------------------------------------------------------------------------
/Screenshots/8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kiddin9/luci-theme-edge/HEAD/Screenshots/8.png
--------------------------------------------------------------------------------
/htdocs/luci-static/edge/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kiddin9/luci-theme-edge/HEAD/htdocs/luci-static/edge/logo.png
--------------------------------------------------------------------------------
/htdocs/luci-static/edge/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kiddin9/luci-theme-edge/HEAD/htdocs/luci-static/edge/favicon.ico
--------------------------------------------------------------------------------
/htdocs/luci-static/edge/background/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kiddin9/luci-theme-edge/HEAD/htdocs/luci-static/edge/background/1.jpg
--------------------------------------------------------------------------------
/htdocs/luci-static/edge/background/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kiddin9/luci-theme-edge/HEAD/htdocs/luci-static/edge/background/2.jpg
--------------------------------------------------------------------------------
/htdocs/luci-static/edge/background/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kiddin9/luci-theme-edge/HEAD/htdocs/luci-static/edge/background/3.jpg
--------------------------------------------------------------------------------
/htdocs/luci-static/edge/fonts/argon.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kiddin9/luci-theme-edge/HEAD/htdocs/luci-static/edge/fonts/argon.woff
--------------------------------------------------------------------------------
/root/etc/uci-defaults/30_luci-theme-edge:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | uci batch <<-EOF
3 | set luci.themes.Edge=/luci-static/edge
4 | set luci.main.mediaurlbase=/luci-static/edge
5 | commit luci
6 | EOF
7 | exit 0
8 |
--------------------------------------------------------------------------------
/htdocs/luci-static/edge/icons/arrow.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Makefile:
--------------------------------------------------------------------------------
1 | #
2 | # Copyright (C) 2008-2019 GaryPang
3 | #
4 | # This is free software, licensed under the Apache License, Version 2.0 .
5 | #
6 |
7 | include $(TOPDIR)/rules.mk
8 |
9 | LUCI_TITLE:=Edge Theme
10 | LUCI_DEPENDS:=+curl
11 |
12 | PKG_LICENSE:=Apache-2.0
13 |
14 | include $(TOPDIR)/feeds/luci/luci.mk
15 |
16 | # call BuildPackage - OpenWrt buildroot signature
17 |
--------------------------------------------------------------------------------
/htdocs/luci-static/edge/icons/spinner.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/htdocs/luci-static/edge/sun.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/luasrc/view/themes/edge/footer.htm:
--------------------------------------------------------------------------------
1 | <%#
2 | edge is a clean HTML5 theme for LuCI. It is based on luci-theme-material edge Template
3 |
4 | luci-theme-edge
5 | Copyright 2019 Jerrykuku
6 |
7 | Have a bug? Please create an issue here on GitHub!
8 | https://github.com/jerrykuku/luci-theme-edge/issues
9 |
10 | luci-theme-material:
11 | Copyright 2015 Lutty Yang
12 |
13 | Agron Theme
14 | https://demos.creative-tim.com/edge-dashboard/index.html
15 |
16 | Licensed to the public under the Apache License 2.0
17 | -%>
18 |
19 | <% local ver = require "luci.version" %>
20 |
21 |
25 |
26 |
27 |
31 |
32 |
33 |
34 |