-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabout.html
42 lines (41 loc) · 1.26 KB
/
about.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
---
title: About Me
---
<div class="row">
<div class="col-xs-12 col-sm-4">
<div class="row">
<div class="col-xs-12 text-center">
{% if site.author.avatar %}
{% if site.author.avatar contains "//" %}
{% capture avatar %}{{ site.author.avatar }}{% endcapture %}
{% else %}
{% capture avatar %}{{ site.author.avatar | prepend: site.baseurl }}{% endcapture %}
{% endif %}
<img class="img-responsive img-rounded" src="{{ avatar }}">
{% else %}
<h1 class="poorman-thumbnail" style="background: #48c;">
{{ site.author.name | truncate: 1, '' }}
</h1>
{% endif %}
</div>
<div class="col-xs-12 text-center">
<h4 class="hidden-xs">Find Me On</h4>
<ul class="list-inline">
{% for social in site.author.socials %}
{% if social[1] %}
<li>
<a href="{{ social | last }}">
<i class="fa fa-lg fa-{{ social | first }}"></i>
</a>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-8">
<h2>{{ site.author.name }}</h2>
{{ site.author.profile | markdownify }}
</div>
</div>