summaryrefslogtreecommitdiff
path: root/views/index.html
blob: 7ab4bd018c743b2e9fa1b5a4bc34b095632d2086 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!doctype html>
<html>
<head>
	<title>Lex.surf: Portal to National Law</title>
	<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
	<link rel="stylesheet" href="/assets/style.css" />
</head>
<body>
	<img height=140 class=logo src="/assets/logo.svg">
	<h2>The portal to&nbsp;national&nbsp;law.</h2>
	<div class=countries>
	{{range $key, $c := .Countries -}}
		<a class=cc-link href="//{{$key}}.{{$.Domain}}" title="{{$c.Name}}">{{$key | ToUpper}}</a>
	{{- end}}
	</div>
	<p>More countries coming soon.</p>
</body>
</html>