-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate-root.html
More file actions
36 lines (34 loc) · 1.28 KB
/
Copy pathtemplate-root.html
File metadata and controls
36 lines (34 loc) · 1.28 KB
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
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>$if(title)$$title$$else$Hygebra$endif$</title>
<meta name="description" content="$if(description)$$description$$else$Personal Homepage & Blog$endif$">
<meta property="og:title" content="$if(title)$$title$$else$Hygebra$endif$">
<meta property="og:description" content="$if(description)$$description$$else$Personal Homepage & Blog$endif$">
<meta property="og:type" content="website">
<meta property="og:image" content="/pic/github_avater.jpg">
<link rel="stylesheet" href="style.css">
$if(mathjax)$
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
$endif$
</head>
<body class="home-page">
<div class="topbar">
<button id="menu-toggle" class="menu-btn" title="Toggle Sidebar">☰</button>
<h2>Haishu Su(Hygebra)</h2>
<div class="nav-links">
<a href="/index.html">Homepage</a>
<a href="/blog/index.html">Blog</a>
</div>
</div>
<div class="container">
<div class="main">
$body$
</div>
</div>
<script src="/js/sidebar-control.js"></script>
</body>
</html>