-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathheader.tmpl
More file actions
executable file
·48 lines (47 loc) · 1.82 KB
/
header.tmpl
File metadata and controls
executable file
·48 lines (47 loc) · 1.82 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
42
43
44
45
46
47
48
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>$projname ($projnumber)</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" media="all" href="${root}notes.css" />
<link rel="stylesheet" type="text/css" media="print" href="${root}notes-print.css" />
<!-- <script type="text/javascript" src="$jsmathpath"></script> -->
<script type="text/javascript" src="${root}styleLineNumbers.js"></script>
<script type="text/javascript" src="${root}notesList.js"></script>
</head>
<body onload="styleLN()">
<div id="container">
<div id="title">
<h1 class="left">$projname</h1>
<h1 class="right">$projnumber</h1>
</div> <!-- title -->
<div id="sidebar">
<h1>Project notes:</h1>
<ul>
<script type="text/javascript">showNotesList('$root')</script>
</ul>
<hr />
<h1>Contacts:</h1>
<ul>
$contactlist
</ul>
<hr />
<h1>Source:</h1>
<ul>
<li><script type="text/javascript">
document.write('<a href="txmt://open?url=' + document.URL.replace(/html$/, 'md') + '">Edit in TextMate</a></li>\n')
</script>
<li>Last modified<br />
$modldate<br />
at $modtime</li>
</ul>
<hr />
<ul>
<li><script type="text/javascript">
infoPath = document.URL.replace(/\/$dirname\/.+$/, '/$dirname/project.info');
document.write('<a href="txmt://open?url=' + infoPath + '">Edit project info</a>');
</script></li>
</ul>
</div> <!-- sidebar -->
<div id="note">