forked from juzu/juzuweb.org.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchive.html
More file actions
145 lines (123 loc) · 4.8 KB
/
archive.html
File metadata and controls
145 lines (123 loc) · 4.8 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta, title, CSS, favicons, etc. -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Juzu Web Framework</title>
<!-- Juzuweb CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/site.css" rel="stylesheet">
<!--[if lt IE 9]><script src="js/ie8-responsive-file-warning.js"></script><![endif]-->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="js/bootstrap-3.1/html5shiv.js"></script>
<script src="js/bootstrap-3.1/respond.min.js"></script>
<![endif]-->
<!-- Juzuweb Favicons -->
</head>
<body class="body-page">
<div id="wrapper" class="wrapper">
<div class="inner">
<nav id="navbarTop" class="navbar navbar-top affix" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbarCollapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Juzu Web Framework</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">Home</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" >Project <b class="caret-square"></b></a>
<ul class="dropdown-menu">
<li><a href="features.html"><span>Features</span></a></li>
<li><a href="https://github.com/juzu/juzu/blob/master/roadmap.asciidoc"><span>Road map</span></a></li>
<li><a href="https://github.com/juzu/juzu"><span>Contribute</span></a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" >Documentation <b class="caret-square"></b></a>
<ul class="dropdown-menu">
<li><a href="tutorial/index.html"><span>Tutorial</span></a></li>
<li><a href="reference/index.html"><span>Reference</span></a></li>
<li><a href="javadoc/index.html" target="blank_"><span>Javadoc</span></a></li>
</ul>
</li>
<li><a href="screencasts.html">Screencasts</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav><!-- /.navbar-top -->
<div class="page-header">
<h1>Blog Archive</h1>
</div>
<!--<ul>-->
<h4>October 2013</h4>
<ul>
<li>17 - <a href="/blog/2013/fourth-post.html">Fourth Post</a></li>
</ul>
<h4>September 2013</h4>
<ul>
<li>26 - <a href="/blog/2013/third-post.html">Third Post</a></li>
</ul>
<h4>August 2013</h4>
<ul>
<li>25 - <a href="/blog/2013/second-post.html">Second Post</a></li>
</ul>
<h4>July 2013</h4>
<ul>
<li>24 - <a href="/blog/2013/first-post.html">First Post</a></li>
</ul>
</div><!-- /.inner -->
</div><!-- /#wrapper /.wrapper -->
<footer id="footer">
<div class="inner">
<p class="copy-right">Copyright ©2013. All rights reserved. <a href="#" title="Juzu Web Framework">Juzu</a></p>
</div>
</footer><!-- /#footer -->
<!-- Juzuweb Javascript -->
<!-- Currenly using Jquery v.1.7.1 because Jquery Address conflict with Jequery v.11.0 -->
<script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="js/bootstrap-3.1/jquery.address-1.5.min.js"></script>
<script type="text/javascript" src="js/bootstrap-3.1/dropdown.js"></script>
<script type="text/javascript" src="js/bootstrap-3.1/collapse.js"></script>
<script type="text/javascript" src="js/bootstrap-3.1/juzu.js"></script>
<script type="text/javascript">
$(document).ready(function() {
// The page navigation
$.address.change(function(event){
// Get anchor
var anchor = event.value.substring(1);
if (anchor == "")
anchor = "home";
//
var page = $(".page:has(a[name=" + anchor + "])");
if (page.length == 1) {
page.filter(function() {
return this != window.previous;
}).each(function() {
// Do show/hide
$(".page").hide();
$(this).show();
// Reset page to top
$(window).scrollTop(0);
// Update previous
window.previous = this;
});
} else {
// Should log something somehow
}
});
});
</script>
</body>
</html>