-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding.html
26 lines (26 loc) · 848 Bytes
/
landing.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>{{ site.name }}</title>
{% include meta.html %}
<link rel="alternate" type="application/rss+xml" title="{{ site.name }}" href="/feed.xml" />
<style type="text/css">#landing {flex-direction: column;min-height:35em}</style>
</head>
<body>
<header id="landing">
<img alt="Profile Picture" src="img/profile.jpg" />
<h1>{{ site.name }}</h1>
<p>{{ site.bio }}</p>
<nav>
{% for link in site.links %}
<a href="{{ link.url }}">{{ link.name }}</a>
{% endfor %}
</nav>
</header>
<main>
{{ content }}
</main>
<footer>© Ian Glen - <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA</a> unless specified</footer>
<link href="https://fonts.googleapis.com/css2?family=Mulish&display=swap" rel="stylesheet">
</body>
</html>