forked from omgmog/omgmog.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
36 lines (32 loc) · 853 Bytes
/
about.html
File metadata and controls
36 lines (32 loc) · 853 Bytes
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
---
layout: layout
title: About
permalink: /about/
redirect_from: /about.html
features: ["hide_about", "hide_recent_posts", "hide_recent_reviews"]
---
<div class="inner">
<img
src="{{ site.baseurl }}/assets/max.jpg"
alt="A photo of Max Glenister, a front-end developer from Oxford"
width="200"
height="200"
class="thumb-200 center rounded"
/>
{% for paragraph in site.description %}
{{ paragraph | markdownify }}
{% endfor %}
<hr />
<p>
If you'd like to find out more about what I've been up to, you can do so through the following links:
</p>
<ul class="links">
{% for site in site.sites %}
<li>
<a href="{{ site.link }}" target="_blank">
{{ site.text }}
</a>
</li>
{% endfor %}
</ul>
</div>