-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathversion.html
38 lines (31 loc) · 1.02 KB
/
version.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
<!doctype html>
<html lang=en >
<head>
<meta charset="utf-8" />
<title>Versions</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mustache.js/2.3.0/mustache.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="js/version.js"></script>
<link rel="stylesheet" href="css/version.css" />
</head>
<body data-url="version.json">
<dl>
<dt>APPVEYOR_PROJECT_NAME:</dt>
<dd>{{APPVEYOR_PROJECT_NAME}}</dd>
<dt>APPVEYOR_BUILD_VERSION:</dt>
<dd>{{APPVEYOR_BUILD_VERSION}}</dd>
<dt>Date:</dt>
<dd>{{DATE}}</dd>
<dt>dc-law-xml:</dt>
<dd data-repo="dccouncil/dc-law-xml">{{dc-law-xml}}</dd>
<dt>dc-law-xml-codified:</dt>
<dd data-repo="dccouncil/dc-law-xml-codified">{{dc-law-xml-codified}}</dd>
<dt>open-law-publish-client:</dt>
<dd>{{open-law-publish-client}}</dd>
<dt>open-law-core:</dt>
<dd>{{open-law-core}}</dd>
<dt>open-law-us-dc:</dt>
<dd>{{open-law-us-dc}}</dd>
</dl>
</body>
</html>