-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
155 lines (106 loc) · 3.67 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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>SDU NLP</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="icon" href="/favicon.png">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/js/google-code-prettify/tomorrow-night-eighties.min.css">
</head>
<body>
<header>
<a id="logo" href="/" title="SDU NLP">
<img src="/favicon.png" alt="SDU NLP"></a>
<!--搜索栏-->
<i class="js-toggle-search iconfont icon-search"></i>
<form class="js-search search-form search-form--modal" method="get" action="http://gushi.li" role="search">
<div class="search-form__inner">
<div>
<i class="iconfont icon-search"></i>
<input class="text-input" placeholder="Enter Key..." type="search">
</div>
</div>
</form>
<!--侧边导航栏-->
<a id="nav-toggle" href="#"><span></span></a>
<nav>
<div class="menu-top-container">
<ul id="menu-top" class="menu">
<li class="current-menu-item">
<a href="https://sdunlp.github.io" target="">Home</a>
</li>
</ul>
</div>
</nav>
</header>
<div class="m-header ">
<section id="hero1" class="hero">
<div class="inner">
</div>
</section>
<figure class="top-image" data-enable=true></figure>
</div>
<!--文章列表-->
<div class="wrapper">
<ul class="posts-list mb+ js-posts">
<!--<div class="type">
<div class="mask">
<i class="iconfont"></i>
</div>
</div>-->
<li class="post">
<i class="post-status iconfont icon-icon"></i>
<h2 class="no-background" >
<span><a href="/2017/04/19/hello-world/">Welcome</a></span>
<time class="post-time" datetime="2017-04-19T08:34:32.000Z" itemprop="datePublished">2017-04-19</time>
</h2>
</li>
</ul>
</div>
<div class="fat-footer">
<div class="wrapper">
<div class="layout layout--center">
<div class="layout__item palm-mb">
<div class="media">
<img class="headimg" src='https://avatars1.githubusercontent.com/u/26846749?v=3&s=200' alt='NLP'>
<div class="media__body">
<h4>SDU NLP</h4>
<p class='site-description'>一个中英新闻可视分析系统</p>
</div>
</div>
<div class="author-contact">
<ul>
<li>
<a href="https://github.com/sdunlp" target="_blank">
<i class="iconfont icon-github"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<footer class="footer" role="contentinfo">
<div class="wrapper wrapper--wide split split--responsive">
<span>本站总访问量 <span id="busuanzi_value_site_pv"></span> 次, 访客数 <span id="busuanzi_value_site_uv"></span> 人次</span>
<span>Theme by <a href="http://github.com/yumemor">Yumemor</a>. Powered by <a href="http://hexo.io">Hexo</a></span>
</div>
</footer>
<!--这里导入了 lib.js 里面涵盖了 jQuery 等框架 所以注释掉-->
<!--<script src="http://lib.sinaapp.com/js/jquery/2.0/jquery.min.js"></script>-->
<script src="/js/lib.js"></script>
<script src="/js/google-code-prettify/prettify.js"></script>
<script src="/js/module.js"></script>
<script src="/js/script.js"></script>
<script async src="http://dn-lbstatics.qbox.me/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<script type='text/javascript'>
//代码高亮
$(document).ready(function(){
$('pre').addClass('prettyprint linenums').attr('style', 'overflow:auto;');
prettyPrint();
});
</script>
</body>
</html>