-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·36 lines (35 loc) · 1.14 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="assets/img/favicon.ico">
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon.png">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" media="handheld" href="assets/css/handheld.css?v=2">
<link href='http://fonts.googleapis.com/css?family=Muli|Nunito|Jura|Metrophobic|Orbitron&subset=latin&v2' rel='stylesheet' type='text/css'>
</head>
</head>
<body>
<section id="container">
<section id="main" role="main">
<p>You need javascript to view this site</p>
</section>
<footer> </footer>
</section>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script src="assets/js/jquery.articles.js"></script>
<script>
$('#main').getArticles({
folder: "content",
maxArticles: 2,
slideIn: false,
emptyContainer: true
});
</script>
</body>
</html>