-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.hbs
More file actions
27 lines (24 loc) · 805 Bytes
/
template.hbs
File metadata and controls
27 lines (24 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{title}}</title>
<link rel="stylesheet" href="css/style.css?v=20250704" type="text/css">
<link rel="stylesheet" href="css/index.css?v=20250704" type="text/css">
</head>
<body>
<div id="sidebar">
<ul>
<li><a href="base64.html">Base64 编码/解码</a></li>
<li><a href="url.html">URL 编码/解码</a></li>
<li><a href="json.html">JSON 格式化</a></li>
<li><a href="index.html">其他工具</a></li>
</ul>
</div>
<main>
{{{content}}}
</main>
<script src="https://cdn.jsdelivr.net/npm/handlebars@latest/dist/handlebars.js"></script>
</body>
</html>