diff options
author | Martin Fischer <martin@push-f.com> | 2021-02-28 09:18:48 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2021-03-03 12:52:46 +0100 |
commit | 4d43e952fff25b5b131e8699858da663a5ac2c42 (patch) | |
tree | acff62119061480a1cd7580f25c16c539aabc2ae /views/index.html |
initial commit
Diffstat (limited to 'views/index.html')
-rw-r--r-- | views/index.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/views/index.html b/views/index.html new file mode 100644 index 0000000..7ab4bd0 --- /dev/null +++ b/views/index.html @@ -0,0 +1,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 national 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> |