-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (58 loc) · 2.3 KB
/
index.html
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<html>
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.teal-blue.min.css">
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Roboto:300,400,500,700" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.content {
padding: 1rem;
}
.mdl-navigation__link {
font-weight: bold;
font-size: 110%;
}
</style>
</head>
<!-- For more on material design lite: https://getmdl.io/started/index.html -->
<!-- Available components: https://getmdl.io/components/index.html -->
<!-- Layout: https://getmdl.io/components/index.html#layout-section -->
<!-- Color schemes are listed at https://material.io/design/color/the-color-system.html#color-usage-and-palettes -->
<!-- Once a primary color is chosen, css is of the form material.indigo-pink.min.css -->
<body>
<div class="mdl-layout mdl-js-layout">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<!-- Title -->
<!-- <span class="mdl-layout-title">Fritz Marshal</span> -->
<!-- Add spacer, to align navigation to the right -->
<div class="mdl-layout-spacer"></div>
<!-- Navigation -->
<nav class="mdl-navigation">
<a class="mdl-navigation__link" href="https://fritz-marshal.org/doc">Documentation</a>
</nav>
<nav class="mdl-navigation">
<a class="mdl-navigation__link" href="https://github.com/fritz-marshal/fritz">GitHub</a>
</nav>
</div>
</header>
<main class="mdl-layout__content content">
<div>
<h2>The Fritz Astronomy Marshal</h2>
</div>
<div>
<ul class="mdl-list">
<li class="mdl-list__item-primary-content">
<a href="https://fritz-marshal.org/doc">
<button class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored">
Proceed to documentation
</button>
</a>
</li>
</ul>
</div>
</main>
</div>
</body>
</html>