-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (57 loc) · 1.84 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
<!doctype html>
<html>
<head>
<title>个人主页</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link rel="icon" href="picture/title.ico" type="image/x-icon"/>
<meta charset="utf-8">
</head>
<body>
<header>
<h1>
往事随风<span class="orange"> 的BLOG </span>
</h1>
</header>
<nav>
<ul>
<li><a href="index.html" class="selected">博客首页 </a> </li>
<li><a href="https://www.elastic.co/guide/en/elasticsearch/client/java-api/2.3/java-api.html">Elasticsearch社区 </a></li>
<li><a href="html/about_me.html">关于我 </a></li>
</ul>
</nav>
<div id="content">
<div id="left">
<aside>
<ul>
<li><a href="html/elasticserch_share.html" class="selected">ES学习 </a></li>
<li><a href="html/lucene_share.html">Lucene学习 </a></li>
<li><a href="html/life.html">生活 </a> </li>
<li><a href="html/more.html">更多 </a></li>
</ul>
</aside>
</div>
<div id = "right">
<br/>
<p align="left"> 生活, 重在积累。俗话说得好: 好记性,不如烂笔头!</p>
<p align="left"> 写下来的东西,会慢慢沉淀,长而久之,都变成了刻在脑海中的东西了。</p>
<br/>
<br/>
<p><strong>生命不止, 奋斗不息!!!</strong></p>
</div>
</div>
<footer>
<hr />
<script type="text/javascript">
if (localStorage.pagecount)
{
localStorage.pagecount=Number(localStorage.pagecount) +1;
}
else
{
localStorage.pagecount=1;
}
document.write("第" + localStorage.pagecount + "位访客");
</script>
</footer>
</body>
</html>