49 lines
1.3 KiB
HTML
Executable File
49 lines
1.3 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
|
|
/>
|
|
<title>StormX</title>
|
|
<link
|
|
rel="apple-touch-icon"
|
|
sizes="180x180"
|
|
href="{{ url_for('static', filename='images/webapp/apple-touch-icon.png') }}"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="32x32"
|
|
href="{{ url_for('static', filename='images/webapp/favicon-32x32.png') }}"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="16x16"
|
|
href="{{ url_for('static', filename='images/webapp/favicon-16x16.png') }}"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/ico"
|
|
href="{{ url_for('static', filename='images/webapp/favicon.ico') }}"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="{{ url_for('static', filename='css/style.css') }}?v={{ time }}"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<h1>欢迎使用StormX</h1>
|
|
<img
|
|
src="{{ url_for('static', filename='images/StormX.svg') }}"
|
|
alt="StormX"
|
|
style="height: 100%; display: block"
|
|
/>
|
|
<!-- 使用JavaScript进行页面跳转 -->
|
|
<button id="btn">Go to Home</button>
|
|
<script src="{{ url_for('static', filename='js/script.js') }}?v={{ time }}"></script>
|
|
</body>
|
|
</html>
|