forked from robparrott/git-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
31 lines (26 loc) · 849 Bytes
/
Copy pathtemplate.html
File metadata and controls
31 lines (26 loc) · 849 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd"
xml:lang="en">
<head>
<title>{{ title }}</title>
<link rel="stylesheet" href="css/github.css"></link>
<link rel="stylesheet" href="css/workshop-screen.css" media="screen"></link>
<link rel="stylesheet" href="css/workshop-print.css" media="print"></link>
</head>
<body>
<div id="left">
<h1 id="title">{{ title }}</h1>
<p>
<a href="http://www.huit.harvard.edu/">HUIT</a>-- Harvard University IT
</p>
{{ toc }}
</div>
<div id="content">
{{ content }}
</div>
</body>
</html>