-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
43 lines (41 loc) · 1.32 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
---
layout: default
title: 关于博主 | LaingKe
page-title: AboutMe
home-title: Show you about me & How to support me
description:
---
{% include header.html %}
{% include boot.html %}
<main>
{% include title.html %}
<ul class="ex-list">
{% if site.author %}
<li class="fadeInUp animated" title="About Me">
<div class="portraits"><img src="{{ site.portraits }}" alt="头像"></div>
<span id="yourname">{{ site.name }}</span>
<span id="yourbio">{{ site.bio }}</span>
{% if site.about %}
<span id="aboutyou">{{ site.aboutyou }}</span>
{% endif %}
{% endif %}
{% if site.SNS %}
{% for sns-icon in site.SNS-icon %}
<a href="{{ sns-icon[1] }}" title="{{ sns-icon[0] }}" target="_blank">
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-{{ sns-icon[0] }}"></use>
</svg>
</a>
{% endfor%}
</li>
{% endif %}
{% if site.tags.size>0 %}
<li class="fadeInUp animated" title="Tags">
{% for tag in site.tags %}
<a href="tags.html#{{ tag[0] }}" class="tag">{{ tag[0]}}</a>
{% endfor %}
</li>
{% endif %}
</ul>
</main>
{% include footer.html %}