mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-23 13:18:13 -05:00
937696c26d
* improve: status-server主题日常优化 1. 首页账单信息:价格设置成“-1”前台展示为”PAYG“,自动续期(autoRenewal)功能增加支持付费周期yr,mo; 2. 当未获取到国旗图标时,默认彩虹旗; 3. 当未获取到os(操作系统)信息时,默认linux 4. 一些其他优化 * 修改表达不准确的语言文件
44 lines
2.0 KiB
HTML
Vendored
44 lines
2.0 KiB
HTML
Vendored
{{define "theme-server-status/header"}}
|
|
<!DOCTYPE html>
|
|
<html lang="{{.Conf.Language}}">
|
|
<head>
|
|
<title>{{.Title}}</title>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<meta content="telephone=no" name="format-detection">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
<meta name="theme-color" content="#000000" />
|
|
{{if eq .Conf.Language "zh-CN"}}
|
|
<link rel="manifest" href="/static/manifest-zh-CN.json?v20240905" />
|
|
{{else}}
|
|
<link rel="manifest" href="/static/manifest-en-US.json?v20240905" />
|
|
{{end}}
|
|
<link rel="apple-touch-startup-image" href="/static/logo.svg" />
|
|
<link rel="shortcut icon" type="image/png" href="/static/logo.svg">
|
|
<link rel="stylesheet" href="https://unpkg.com/bootstrap@3.4.1/dist/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="https://unpkg.com/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
|
<link rel="stylesheet" href="https://unpkg.com/font-logos@0.17.0/assets/font-logos.css">
|
|
<link rel="stylesheet" href="https://unpkg.com/flag-icons@7.2.3/css/flag-icons.min.css">
|
|
<link rel="stylesheet" href="https://unpkg.com/semantic-ui@2.4.0/dist/semantic.min.css">
|
|
<script src="https://unpkg.com/jquery@3.7.1/dist/jquery.min.js"></script>
|
|
<script src="https://unpkg.com/bootstrap@3.4.1/dist/js/bootstrap.min.js"></script>
|
|
<script src="https://unpkg.com/vue@2.6.14/dist/vue.min.js"></script>
|
|
<script src="https://unpkg.com/echarts@5.5.0/dist/echarts.min.js"></script>
|
|
<link rel="stylesheet" href="/static/theme-server-status/css/main.css?v20241008">
|
|
<link rel="stylesheet" href="/static/theme-server-status/css/dark.css?v20241008">
|
|
<link rel="stylesheet" href="/static/theme-server-status/css/light.css?v20241008">
|
|
<script src="/static/theme-server-status/js/mixin.js?v20240915"></script>
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
{{end}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|