-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_template.html
44 lines (44 loc) · 1.68 KB
/
_template.html
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
42
43
44
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title lquery="(text title)">TITLE</title>
<link rel="stylesheet"
href="https://unpkg.com/[email protected]/build/pure-min.css"
integrity="sha384-nn4HPE8lTHyVtfCBi5yW9d20FjT8BJwUXyWZT9InLYax14RDjBj46LmSztkmNP9w"
crossorigin="anonymous">
<link rel="stylesheet"
href="https://unpkg.com/[email protected]/build/grids-responsive-min.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/styles/tomorrow.min.css" />
<link rel="stylesheet" href="style.css"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/highlight.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/languages/lisp.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/languages/yaml.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
</head>
<body>
<header class="pure-menu pure-menu-horizontal">
<a href="https://roswell.github.io/" class="pure-menu-heading pure-menu-link">Roswell</a>
<ul class="pure-menu-list">
<li class="pure-menu-item">
<a class="pure-menu-link" href="https://github.com/roswell/roswell">
Contribute in GitHub
</a>
</li>
</ul>
</header>
<main class="pure-g">
<div id="index" class="pure-u-1-1 pure-u-md-1-4"
lquery="(append navigation)">
</div>
<div id="content" class="pure-u-1-1 pure-u-md-3-4">
<h1 lquery="(text title)"></h1>
<article lquery="(append article)"></article>
</div>
</main>
<footer>
Copyright © 2018 Roswell All Rights Reserved.
</footer>
</body>
</html>