-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (59 loc) · 1.73 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
<!DOCTYPE html>
<html>
<head>
<link href='http://fonts.googleapis.com/css?family=Gilda+Display|Droid+Serif|Raleway' rel='stylesheet' type='text/css'>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js" type="text/javascript"></script>
<script>
$(window).load(function() {
var sidebarH = $("nav").height();
var articleH = $("article").height();
if(sidebarH <= articleH){
$("nav").css({'height': articleH});
}
else{
$("article").css({'height': sidebarH});
}
});
</script>
<link rel="stylesheet" href="/static/style.css" type="text/css" />
<title>Google App Engine Workshop</title>
</head>
<body>
<!-- Define Header -->
<header>
<div id="contents">
<h1>Google App Engine Workshop</h1>
</div>
</header>
<div id="main">
<!-- Navigation Bar -->
<nav>
<ul>
<li class='head'>General</li>
<ul>
<li><a href = "/example">Example</a></li>
</ul>
<li class='head'>Reference</li>
<ul>
<li><a href = "#">foo</a></li>
<li><a href = "#">foo</a></li>
<li><a href = "#">foo</a></li>
</ul>
</ul>
<br />
</nav>
<!-- Content -->
<article>
<div id = "contents">
<h1>Welcome!</h1>
In <b>app.yaml</b>: <br \>
To add a static folder (used for storing .css files and images, etc). Also create an empty folder in called "static_files" in the same directory.
[add more content]
</div>
</article>
</div>
<!-- Footer -->
<footer>
</footer>
</body>
</html>