-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtemplate.html
More file actions
41 lines (39 loc) · 1.73 KB
/
template.html
File metadata and controls
41 lines (39 loc) · 1.73 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
37
38
39
40
41
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{PAGE_TITLE}}</title>
<link rel="stylesheet" href="/style.css" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" type="text/css">
<link rel="icon" type="image/png" href="https://avatars.githubusercontent.com/u/83299896" />
<meta property="og:locale" content="en_US">
<meta property="og:site_name" content="Portal 2 Rules">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary">
<meta property="og:image" content="https://avatars.githubusercontent.com/u/83299896">
<meta name="twitter:image" content="https://avatars.githubusercontent.com/u/83299896">
<meta property="og:title" content="{{PAGE_TITLE}}">
<meta name="twitter:title" content="{{PAGE_TITLE}}">
<meta name="description" content="{{PAGE_DESC}}">
<meta property="og:description" content="{{PAGE_DESC}}">
<meta name="twitter:description" content="{{PAGE_DESC}}">
<script defer src="/scroll.js"></script>
<script defer src="/mobile-menu.js"></script>
<script defer src="/command-table.js"></script>
<script defer src="/timestamp.js"></script>
</head>
<body>
<nav>
<div>
<img src="/menu-icon.svg" alt="Menu" width="48px" height="48px">
<h2>Portal 2 Rules</h2>
</div>
{{NAV_MENU}}
</nav>
<main>
<h1>Portal 2 Rules</h1>
{{CONTENT}}
</main>
</body>
</html>