-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnews.html
46 lines (33 loc) · 1.38 KB
/
news.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<title>Gao's LAB</title>
<meta name="description" content="">
<link rel="alternate" type="application/rss+xml" href="/feed.xml">
<!-- Stylesheet -->
<link rel="stylesheet" href="/css/main.css" rel='stylesheet' type='text/css'>
<!-- Google Fonts -->
<link href='https://fonts.googleapis.com/css?family=Nunito:400,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,600,600italic' rel='stylesheet' type='text/css'>
<!-- Favicon -->
<link rel="shortcut icon" href="/img/small_logo.png">
</head>
<body data-spy="scroll" data-offset="80" data-target=".scrollspy" id="top">
<div class="navigation"></div>
<div class="common-news"></div>
<div class="footer"></div>
<script src="/js/jquery.min.js"></script>
<script src="/js/all.min.js"></script>
<script>
$(document).ready(function () {
$(".common-news").load("/common/news.html");
$(".footer").load("/common/footer.html");
$(".navigation").load("/common/navigation.html");
});
</script>
</body>
</html>