-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
122 lines (118 loc) · 5.01 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
---
layout: default
---
<section class="hero is-primary bgheader">
<div class="hero-body">
<div class="container is-fluid">
<h1 class="title">
About
</h1>
<h2 class="subtitle">
Kartoffeln.
</h2>
</div>
</div>
</section>
<section class="section is-paddingless-touch"> <!-- remove style if not author -->
<div class="container is-fluid">
<h1 style="font-size: 2em; margin-bottom: .5em; color: #363636;">Authors</h1>
{% for author in site.authors %}
<div class="section" style="padding: 1rem 7% !important"> <!-- remove style if not author -->
<div class="container is-fluid">
<div class="box">
<div class="media">
<div class="media-left">
<a href="{{ author.url | prepend: site.baseurl }}">
<figure class="image is-64x64">
<img src="{{ author.image }}" alt="{{ author.name }}">
</figure>
</a>
</div>
<div class="media-content">
<div class="content">
<p>
<strong>{{ author.name }}</strong>
<br>
{{ author.bio }}
</p>
</div>
<p>
{% if author.permalink %}
<a href="{{ author.url | prepend: site.baseurl }}">
<span class="icon is-small">
<i class="fa fa-user"></i>
</span>
</a>
{% endif %}
{% if author.github %}
<a href="https://github.com/{{ author.github }}">
<span class="icon is-small">
<i class="fa fa-github"></i>
</span>
</a>
{% endif %}
{% if author.stackoverflow %}
<a href="https://stackoverflow.com/{{ author.stackoverflow}}">
<span class="icon is-small">
<i class="fa fa-stack-overflow"></i>
</span>
</a>
{% endif %}
{% if author.facebook %}
<a href="https://facebook.com/{{ author.facebook }}">
<span class="icon is-small">
<i class="fa fa-facebook"></i>
</span>
</a>
{% endif %}
{% if author.linkedin %}
<a href="https://linkedin.com/{{ author.linkedin}}">
<span class="icon is-small">
<i class="fa fa-linkedin"></i>
</span>
</a>
{% endif %}
{% if author.twitter %}
<a href="https://twitter.com/{{ author.twitter}}">
<span class="icon is-small">
<i class="fa fa-twitter"></i>
</span>
</a>
{% endif %}
{% if author.instagram %}
<a href="https://instagram.com/{{ author.instagram}}">
<span class="icon is-small">
<i class="fa fa-instagram"></i>
</span>
</a>
{% endif %}
{% if author.tumblr %}
<a href="https://tumblr.com/{{ author.tumblr}}">
<span class="icon is-small">
<i class="fa fa-tumblr"></i>
</span>
</a>
{% endif %}
{% if author.slack %}
<a href="{{ author.slack}}">
<span class="icon is-small">
<i class="fa fa-slack"></i>
</span>
</a>
{% endif %}
{% if author.personal-site %}
<a href="{{ author.personal-site}}">
<span class="icon is-small">
<i class="fa fa-link"></i>
</span>
</a>
{% endif %}
</p>
</div>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</section>