diff options
| author | Yuval Adam <_@yuv.al> | 2020-09-27 11:44:06 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2020-09-27 11:44:06 +0300 |
| commit | 1a1a73f21a9552f4657565cabcb83d3bb9321e17 (patch) | |
| tree | fa58c7ebe62c363f3010777f469f5e408c173d26 /iss/templates/base.html | |
| parent | 57081341b6615714736782b75d96fea1ba7142be (diff) | |
Add static files and base template
Diffstat (limited to 'iss/templates/base.html')
| -rw-r--r-- | iss/templates/base.html | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/iss/templates/base.html b/iss/templates/base.html index 6e7c1e6..7c782ee 100644 --- a/iss/templates/base.html +++ b/iss/templates/base.html @@ -1 +1,17 @@ -<h1>hello</h1> +<!doctype html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <title>ISS Predictions | ISS.guru</title> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="description" content="ISS predictions for overhead passes"> + <meta name="keywords" content="ISS, international space station, passes, predictions, overhead, amateur radio"> + <link rel="stylesheet" href="/static/css/tachyons.min.css"> + <link rel="shortcut icon" href="favicon.ico"/> + </head> + <body> + <div class="container"> + <h1 class="title">ISS.guru</h1> + </div> + </body> +</html> |
