-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
57 lines (57 loc) · 1.63 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
---
layout:
title: 关于
description: "hacke2的前端技术博客,分享自己的技术心得,积累前段技能,汇聚前端之路的点点滴滴。"
tags: [青青flye, blog, 青青flye blog, 前端技术, javascript,css]
---
<!DOCTYPE html>
<html lang="zh-cn">
<head>
{% include head.tpl %}
<link rel="stylesheet" href="{{ site.url }}/asset/css/about.css"/>
</head>
<body>
{% include header.tpl %}
<main class="wrapper clearfix">
<img class="avatar" src="{{ site.url }}/images/{{ site.owner.avatar }}" width="172" height="172" alt="头像">
<section class="avatar-detail clearfix">
<h1>{{ site.owner.name }}</h1>
<p>{{ site.owner.bio }}</p>
</section>
<div class="call"></div>
<section class="call-detail">
<h1>联系方式</h1>
<ul>
{% for contact in site.owner.contact %}
<li>{{ contact.title }}:{{ contact.url }}</li>
{% endfor %}
</ul>
</section>
<div class="edu"></div>
<section class="edu-detail">
<h1>教育经历</h1>
<ul>
{% for edu in site.owner.edu %}
<li class="clearfix">
<h2>{{ edu.time }}</h2>
<p>{{ edu.title }}</p>
</li>
{% endfor %}
</ul>
</section>
<div class="job"></div>
<section class="job-detail">
<h1>实习经历</h1>
<ul>
{% for job in site.owner.job %}
<li class="clearfix">
<h2>{{ job.time }}</h2>
<p>{{ job.title }}</p>
</li>
{% endfor %}
</ul>
</section>
</main>
{% include footer.tpl %}
</body>
</html>