-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
39 lines (37 loc) · 1.17 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
---
layout: default
title: About us
permalink: /about
---
<header class="blog-header">
<h1 class="blog-title">{{ page.title }}</h1>
</header>
<main class="content" role="main">
<h2 class="section-title">{{site.title}}' Authors</h2>
<section class="authors">
{% for aut in site.data.authors %}
{% assign author = aut.last %}
<div class="author">
<div class="author-image" style="background-image: url({{author.image | prepend: site.baseurl}})"></div>
<h4>
<a rel="author" href="{{author.homepage}}" rel="author" target="_blank">
{{ author.name }}
</a>
</h4>
<p class="bio">
{{author.bio}}
<br>
{% if author.homepage %}
<a href="{{ author.homepage }}"><i class="fa fa-link" target="_blank"></i></a>
{% endif %}
{% if author.twitter %}
<a href="https://twitter.com/{{ author.twitter }}" target="_blank"><i class="fa fa-twitter"></i></a>
{% endif %}
{% if author.github %}
<a href="https://github.com/{{ author.github }}" target="_blank"><i class="fa fa-github"></i></a>
{% endif %}
</p>
</div>
{% endfor %}
</section>
</main>