-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.htm
More file actions
25 lines (23 loc) · 1.41 KB
/
template.htm
File metadata and controls
25 lines (23 loc) · 1.41 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
<!doctype html>
<head>
<title>{{user_name}} | {{notes_name}}</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;">
<link href='http://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/screen.css">
</head>
<body>
<section id="content">
<article id="page">
<h1 class="title"><a href="index.htm">Home</a> » <a href="{{note_uri}}">{{note_name}}</a></h1>
{{content}}
<hr>
<small>Last modified: {{last_modified}} by <a href="{{web_uri}}" title="{{user_name}}">{{user_name}}</a></small>
</article>
</section>
<footer>
<p>Powered by <a href="https://github.com/kfr2/notational-notes" title="Notational Notes">Notational Notes</a>, designed and developed by <a href="http://magically.us">Kevin Richardson</a>. Design inspired by <a href="https://github.com/fredoliveira/commonplace" title="Commonplace">Commonplace</a>.</p>
<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/deed.en_US"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-sa/3.0/80x15.png" /></a> This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/deed.en_US">Creative Commons Attribution-ShareAlike 3.0 Unported License</a>.
</footer>
</body>
</html>