-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecipe-template.html
65 lines (64 loc) · 1.52 KB
/
recipe-template.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<title>[Recipe title]</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8" />
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<nav role="navigation" aria-label="up">
⬆
<cite><a href=".">HXL toolchain cookbook</a></cite>
</nav>
<h1>[Recipe title]</h1>
<p>
<a href="[Proxy link]" target="_blank">View recipe in the HXL Proxy.</a>
</p>
<ol class="instruction-list">
<li>
<p>
[Opening]
</p>
<table class="example">
<thead>
<tr>
<th>Province</th>
<th>Cluster</th>
</tr>
<tr class="hashtag-row">
<th>#adm1</th>
<th>#sector</th>
</tr>
</thead>
<tbody>
<tr>
<td>Coast Province</td>
<td>WASH</td>
</tr>
<tr>
<td>Plains Province</td>
<td>WASH</td>
</tr>
<tr>
<td>Mountains Province</td>
<td>WASH</td>
</tr>
</tbody>
</table>
</li>
<li>
<p>
[Step instructions]
</p>
<dl class="compact">
<dt>[Param name]</dt>
<dd><code>[Param value]</code></dd>
</dl>
<p>Result:</p>
<table class="example">
</table>
</li>
</ol>
</body>
</html>