mirror of
https://github.com/bolucat/Archive.git
synced 2026-04-22 16:07:49 +08:00
182 lines
6.7 KiB
Plaintext
182 lines
6.7 KiB
Plaintext
{#
|
|
Argon is a clean HTML5 theme for LuCI. It is based on luci-theme-material Argon Template
|
|
|
|
luci-theme-argon
|
|
Copyright 2020 Jerrykuku <jerrykuku@qq.com>
|
|
|
|
Have a bug? Please create an issue here on GitHub!
|
|
https://github.com/jerrykuku/luci-theme-argon/issues
|
|
|
|
luci-theme-material:
|
|
Copyright 2015 Lutty Yang <lutty@wcan.in>
|
|
|
|
Argon Theme
|
|
https://demos.creative-tim.com/argon-dashboard/index.html
|
|
|
|
Licensed to the public under the Apache License 2.0
|
|
-#}
|
|
|
|
{%
|
|
import { readfile, access } from 'fs';
|
|
import { cursor } from 'uci';
|
|
import { srand } from 'math';
|
|
import { getuid, getspnam } from 'luci.core';
|
|
|
|
const boardinfo = ubus.call("system", "board");
|
|
const hostname = striptags(boardinfo?.hostname ?? '?');
|
|
|
|
let cfg = cursor();
|
|
|
|
//send as HTML5
|
|
http.prepare_content('text/html; charset=UTF-8');
|
|
|
|
srand(+substr(reverse(time() + ""), 0, 8));
|
|
|
|
//Custom settings
|
|
let mode = 'normal';
|
|
let bar_color = '#5e72e4';
|
|
let primary, dark_primary, blur_radius, blur_radius_dark, blur_opacity, blur_opacity_dark;
|
|
const dark_css = readfile('/www/luci-static/argon/css/dark.css');
|
|
if (access('/etc/config/argon')) {
|
|
primary = cfg.get_first('argon', 'global', 'primary');
|
|
dark_primary = cfg.get_first('argon', 'global', 'dark_primary');
|
|
blur_radius = cfg.get_first('argon', 'global', 'blur');
|
|
blur_radius_dark = cfg.get_first('argon', 'global', 'blur_dark');
|
|
blur_opacity = cfg.get_first('argon', 'global', 'transparency');
|
|
blur_opacity_dark = cfg.get_first('argon', 'global', 'transparency_dark');
|
|
mode = cfg.get_first('argon', 'global', 'mode');
|
|
bar_color = (mode == 'dark') ? dark_primary : primary;
|
|
}
|
|
|
|
-%}
|
|
<!DOCTYPE html>
|
|
<html lang="{{ dispatcher.lang }}">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
<title>{{ hostname }}{{ node?.title ? ` - ${striptags(node.title)}` : '' }} - LuCI</title>
|
|
|
|
<!-- SEO and Description -->
|
|
<meta name="robots" content="noindex, nofollow">
|
|
|
|
<!-- Security -->
|
|
<meta http-equiv="X-Content-Type-Options" content="nosniff">
|
|
<!-- <meta http-equiv="X-Frame-Options" content="SAMEORIGIN"> -->
|
|
<meta http-equiv="X-XSS-Protection" content="1; mode=block">
|
|
<meta http-equiv="Referrer-Policy" content="strict-origin-when-cross-origin">
|
|
|
|
<!-- Mobile and PWA -->
|
|
<meta name="format-detection" content="telephone=no, email=no">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
<meta name="apple-mobile-web-app-title" content="{{ hostname }} - LuCI">
|
|
|
|
<!-- Theme and Colors -->
|
|
<meta name="theme-color" content="{{ bar_color }}">
|
|
<meta name="msapplication-TileColor" content="{{ bar_color }}">
|
|
<meta name="msapplication-TileImage" content="{{ media }}/icon/ms-icon-144x144.png">
|
|
<meta name="application-name" content="{{ hostname }} - LuCI">
|
|
|
|
<!-- Icons and Manifest -->
|
|
<link rel="icon" type="image/x-icon" href="{{ media }}/favicon.ico">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ media }}/icon/favicon-16x16.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ media }}/icon/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="96x96" href="{{ media }}/icon/favicon-96x96.png">
|
|
<link rel="icon" type="image/png" sizes="192x192" href="{{ media }}/icon/android-icon-192x192.png">
|
|
<link rel="apple-touch-icon" sizes="60x60" href="{{ media }}/icon/apple-icon-60x60.png">
|
|
<link rel="apple-touch-icon" sizes="72x72" href="{{ media }}/icon/apple-icon-72x72.png">
|
|
<link rel="apple-touch-icon" sizes="144x144" href="{{ media }}/icon/apple-icon-144x144.png">
|
|
<link rel="manifest" href="{{ media }}/icon/manifest.json" crossorigin="use-credentials">
|
|
|
|
<link rel="stylesheet" href="{{ media }}/css/cascade.css{# ?v=PKG_VERSION #}">
|
|
<style title="text/css">
|
|
{% if (mode == 'normal'): %}
|
|
@media (prefers-color-scheme: dark) {
|
|
{{ dark_css }}
|
|
}
|
|
{% endif %}
|
|
{% if (mode == 'dark'): %}
|
|
{{ dark_css }}
|
|
{% endif -%}
|
|
{% if (access('/etc/config/argon')): %}
|
|
:root {
|
|
--primary: {{ primary }};
|
|
--dark-primary: {{ dark_primary }};
|
|
--blur-radius:{{ blur_radius }}px;
|
|
--blur-opacity:{{ blur_opacity }};
|
|
--blur-radius-dark:{{ blur_radius_dark }}px;
|
|
--blur-opacity-dark:{{ blur_opacity_dark }};
|
|
}
|
|
{% endif -%}
|
|
</style>
|
|
<!-- Stylesheets -->
|
|
{% if (node?.css): %}
|
|
<link rel="stylesheet" href="{{ resource }}/{{ node.css}}">
|
|
{% endif -%}
|
|
{% if (css): %}
|
|
<style title="text/css">
|
|
{{ css }}
|
|
</style>
|
|
{% endif -%}
|
|
<script src="{{ dispatcher.build_url('admin/translations', dispatcher.lang) }}?v={{ version.luciversion }}"></script>
|
|
<script src="{{ resource }}/cbi.js?v={{ version.luciversion }}"></script>
|
|
<script src="{{ resource }}/luci.js?v={{ version.luciversion }}"></script>
|
|
</head>
|
|
|
|
<body
|
|
class="lang_{{ dispatcher.lang }} {{ node?.title ? ` - ${striptags(node.title)}` : '' }} {% if (ctx.authsession): %}logged-in{% endif %}"
|
|
data-page="{{ entityencode(join('-', ctx.request_path), true) }}">
|
|
|
|
<div class="main">
|
|
<div class="main-left" id="mainmenu" style="display:none">
|
|
<div class="sidenav-header d-flex align-items-center">
|
|
<a class="brand" href="#">{{ hostname }}</a>
|
|
<div class="ml-auto">
|
|
<!-- Sidenav toggler -->
|
|
<div class="sidenav-toggler d-none d-xl-block active" data-action="sidenav-unpin"
|
|
data-target="#sidenav-main">
|
|
<div class="sidenav-toggler-inner">
|
|
<i class="sidenav-toggler-line"></i>
|
|
<i class="sidenav-toggler-line"></i>
|
|
<i class="sidenav-toggler-line"></i>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="main-right">
|
|
<header class="bg-primary">
|
|
<div class="fill">
|
|
<div class="container">
|
|
<div class="flex1">
|
|
<a class="showSide"></a>
|
|
<a class="brand" href="#">{{ hostname }}</a>
|
|
</div>
|
|
<div class="status" id="indicators"></div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<div class="darkMask"></div>
|
|
<div id="maincontent">
|
|
<div class="container">
|
|
{% if (getuid() == 0 && getspnam('root')?.pwdp === ''): %}
|
|
<div class="alert-message error">
|
|
<h4>{{ _('No password set!') }}</h4>
|
|
<p>{{ _('There is no password set on this router. Please configure a root password to protect the web interface.') }}</p>
|
|
{% if (dispatcher.lookup("admin/system/admin")): %}
|
|
<div class="right"><a class="btn" href="{{ dispatcher.build_url("admin/system/admin") }}">{{ _('Go to password configuration...') }}</a></div>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<noscript>
|
|
<div class="alert-message error">
|
|
<h4>{{ _('JavaScript required!') }}</h4>
|
|
<p>{{ _('You must enable JavaScript in your browser or LuCI will not work properly.') }}</p>
|
|
</div>
|
|
</noscript>
|
|
|
|
<div id="tabmenu" style="display:none"></div>
|