blob: 2dd9ab8e8aeaf82c2cfdc4488242a961eb943cba (
plain)
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
|
<!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/contact.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>
|