-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
74 lines (70 loc) · 2.08 KB
/
index.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
---
layout: shouye
title: Miracle Space
---
<style>
.nav ul {list-style-type:none;}
.nav li
{
float:left;
line-height:30px;
margin:5px;
}
</style>
<script type="text/javascript">
$(document).ready(function(){
$(".posts").hide();
});
function showls(lid){
$("#lis").html($("#"+lid).html());
}
</script>
<ul class='nav'>
<li id='tech'>
<a href="javascript:void(0)" onclick="showls('t')"> 科技流行</a>
</li>
<li id='fiction'>
<a href="javascript:void(0)" onclick="showls('f')"> 随便写写</a>
</li>
<li id='life' >
<a href="javascript:void(0)" onclick="showls('l')"> 生活相关</a>
</li>
</ul>
<br>
<hr>
<div id='lis'>
<br>
<img src="/myblog/images/mlxy/4.JPG"><br>
</div>
<ul class='posts'>
<div id='t'>
{% for post in site.categories.tech %}
<li>{{ post.date | date: "%Y/%m/%d" }} <a href="/myblog{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</div>
<div id='f'>
{% for post in site.categories.fiction %}
<li>{{ post.date | date: "%Y/%m/%d" }} <a href="/myblog{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</div>
<div id='l'>
{% for post in site.categories.life %}
<li>{{ post.date | date: "%Y/%m/%d" }} <a href="/myblog{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</div>
<div id="me">
<div itemscope itemtype="http://data-vocabulary.org/Person">
我的名字是: <span itemprop="name">刘洪源</span> <br>
网名:<span itemprop="nickname">Miracle刘</span><br>
我的照片:<span itemprop="photo"><img src="/images/mlxy/3.jpg"></span><br>
我的主页是:
<a href="http://blog.xmark.info" itemprop="url">http://blog.xmark.info</a><br>
我居住在上海市<br>
我是<span itemprop="role">工程师</span><br>
目前在<span itemprop="affiliation">土豆网</span>上班。<br>
<br>
<a href="http://weibo.com/u/1768291940?s=6uyXnP" target="_blank"><img border="0" src="http://service.t.sina.com.cn/widget/qmd/1768291940/1848e47b/4.png"/></a>
</div>
</div>
</ul>