diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2017-12-22 15:00:09 +0200 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2017-12-22 15:00:54 +0200 |
| commit | 0fe65c416358c8e5ddf209c416e0fe46fb1bf7e9 (patch) | |
| tree | 613fbd1fba362a7f0ded9aeda7cdac258d7cbd01 /src/index.html | |
| parent | 8657d222aea2627188a991633b8aa63a3c0293bd (diff) | |
Initial commit
Diffstat (limited to 'src/index.html')
| -rw-r--r-- | src/index.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..9492f35 --- /dev/null +++ b/src/index.html @@ -0,0 +1,32 @@ +<!doctype html> +<html> + + <head> + <title>Jan Tuomi</title> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link href="https://fonts.googleapis.com/css?family=Lato:400,400i,700" rel="stylesheet"> + <script src="https://use.fontawesome.com/eaed73f4f5.js"></script> + <link rel="stylesheet" href="style.css"> + </head> + + <body> + <site></site> + + <!-- riot tags --> + <script src="components/site.tag" type="riot/tag"></script> + <script src="components/header.tag" type="riot/tag"></script> + <script src="components/footer.tag" type="riot/tag"></script> + <script src="components/content.tag" type="riot/tag"></script> + <script src="components/list.tag" type="riot/tag"></script> + <script src="components/subheading.tag" type="riot/tag"></script> + + <!-- scripts we need --> + <script src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.18.1/babel.min.js"></script> + <script src="https://rawgit.com/riot/riot/master/riot%2Bcompiler.min.js"></script> + + <!-- mount this app --> + <script> riot.mount('*') </script> + </body> + +</html> |
