-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.01 KB
/
index.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
{{ define "main" }}
{{ partial "page-header.html" . }}
<section>
{{ partial "chip.html" (dict
"href" "/about/"
"title" "About"
"summary" "Learn more about the project."
) }}
{{ partial "chip.html" (dict
"href" "/newsletter/"
"title" "Newsletter"
"summary" "Subscribe to the project's updates."
) }}
{{ partial "chip.html" (dict
"href" "/datasets/"
"title" "Datasets"
"summary" "Explore the data we've liberated."
) }}
{{ partial "chip.html" (dict
"href" "/documents/"
"title" "Documents"
"summary" "Explore the documents we've liberated."
) }}
{{ partial "chip.html" (dict
"href" "/requests/"
"title" "Records Requests"
"summary" "See what we're requesting from the government."
) }}
{{ partial "chip.html" (dict
"href" "/get-involved/"
"title" "Get Involved"
"summary" "Learn how you can contribute to the project."
) }}
</section>
{{ end }}