This repository has been archived by the owner on Jan 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (72 loc) · 2.43 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
---
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>{{ page.title }}</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap-theme.min.css">
<!-- Fonts -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<!-- Local stylesheet -->
<link rel="stylesheet" href="/css/base.css">
<!-- Latest compiled and minified JavaScript -->
<script src="//code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="row profile-info">
<div class="col-xs-12 col-md-offset-2 col-md-2 profile-left">
<img class="profile-photo center-block" src="http://www.gravatar.com/avatar/968d5dfb184edf2642ef5fdc53055738?s=150">
<div class="profile-caption text-center">
<div>
<i class="fa fa-location-arrow"></i>
<span><a href="https://www.google.com/maps/place/Austin,+TX/">Austin, TX</a></span>
</div>
<div>
<i class="fa fa-briefcase"></i>
<span><a href="https://www.atlassian.com">Atlassian</a></span>
</div>
</div>
</div>
<div class="col-xs-12 col-md-5">
<div class="top-heading">
<h1>Mark Adams</h1>
<span class="code subtitle">software developer</span>
</div>
<div id="profiles">
{% for profile in site.data.profiles %}
<div>
<i title="{{ profile.title }}" class="fa {{ profile.icon }}"></i>
<a href="{{ profile.link }}" rel="me">{{ profile.label }}</a>
</div>
{% endfor %}
</div>
</div>
</div>
<div class="row">
<div class="col-md-offset-2 col-md-7 divider"></div>
</div>
<div id="posts" class="row">
<div class="col-md-offset-2 col-md-7">
<h2>Recent blog posts</h2>
{% if site.posts.size == 0 %}
<p>No blog posts yet!</p>
{% endif %}
<ul>
{% for post in site.posts limit:15 %}
<li>
<a href="{{ post.url }}">{{ post.date | date: "%Y.%m.%d" }} .. {{ post.title }}</a>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</body>
</html>