-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
20 lines (20 loc) · 776 Bytes
/
template.html
File metadata and controls
20 lines (20 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>${head_title}</title>
<meta name="description" content="This is the Cuberite User's Manual. It is intended as a guide on how to operate the basics of Cuberite, as well as an introduction to some advanced features.">
<link rel="canonical" href="https://book.cuberite.org/">
<style>
${css}
</style>
</head>
<body>
<a name="top" class="return-link" href="https://cuberite.org/"><- Return to Cuberite.org</a>
<h1>${title}</h1>
<p>Updated on ${timestamp}, Commit: <a href="https://github.com/cuberite/users-manual/commit/${commit_id}">${commit_id}</a></p>
${content}
<a class="top-button" href="#top">^</a>
</body>
</html>