aboutsummaryrefslogtreecommitdiff
path: root/src/templates/log.html
blob: 7caa079a8a8c3f131c7fcb5096f51503830d368d (plain) (blame)
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
<!DOCTYPE html>
<html lang="en">
	{{ > head.html.tmpl }}
	<body>
		{{ > header.html.tmpl }}
		<hr />

		<div id="content">
			<table id="log">
				<thead>
					<tr>
						<!-- y u not semantic? -->
						<td><b>Date</b></td>
						<td><b>Commit message</b></td>
						<td><b>Author</b></td>
						<td><b>Files</b></td>
						<td><b>Lines</b></td>
					</tr>
				</thead>
				<tbody>
					{{ #commits }}
						<tr>
							<td>{{ date }}</td>
							<td><a href="commit/{{ sha }}.html">{{ message_title }}</a></td>
							<td>{{ author }}</td>
							<td class="num" align="right">{{ files }}</td>
							<td class="num" align="right"><span class="diff-removed">-{{ removed }}</span>/<span class="diff-added">+{{ added }}</span></td>
						</tr>
					{{ /commits }}
				</tbody>
			</table>
		</div>
	</body>
</html>