forked from mike-t/campfire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
118 lines (105 loc) · 5.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Campfire ~ the Australian camping community online.</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Campfire is a place to share the outdoors with like minded people. Share campsites, swap stories and chat around the campfire. Free to Join!">
<meta name="keywords" content="camping australia, campfire, campsite review, campground review, camping search, campsite search, camping tips, camping help, bushwalking australia">
<meta name="author" content="Michael Walton">
<!-- provide html5 element support for old IE browsers -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- include CSS and Bootstrap. Bootstrap is 100% understood and has been modified by MW for INB271 -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<link href="css/font.css" rel="stylesheet">
</head>
<body class="preview welcome-background" id="top">
<!-- ensure we are usign 100% of the screen so we can fix the footer -->
<div class="wrapper">
<!-- Navbar ============================================== -->
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" data-toggle="tooltip" title="Share campsites, swap stories and chat around the campfire." href="../"> Campfire</a>
<div class="nav-collapse collapse" id="main-menu">
<ul class="nav" id="main-menu-left">
<li><a href="#">Recent Activity</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Bushwalking <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a target="_blank" href="#">Search Bushwalks</a></li>
<li><a target="_blank" href="#">Highest Rated Bushwalks</a></li>
<li class="divider"></li>
<li><a target="_blank" href="#">Bushwalking 101 - A Beginner's Guide</a></li>
<li><a target="_blank" href="#">Bushwalking Tips & Videos</a></li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Camping <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a target="_blank" href="#">Search Campsites</a></li>
<li><a target="_blank" href="#">Highest Rated Campsites</a></li>
<li class="divider"></li>
<li><a target="_blank" href="#">Camping 101 - A Beginner's Guide</a></li>
<li><a target="_blank" href="#">Camping Tips & Videos</a></li>
</ul>
</li>
</ul>
<ul class="nav pull-right" id="main-menu-right">
<li><a data-toggle="tooltip" href="#" title="I'm back!">Sign In <i class="icon-heart icon-white"></i></a></li>
<li><a data-toggle="tooltip" href="signup.html" title="Join the Campfire Community!">Join Campfire <i class="icon-share-alt icon-white"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- End Navbar =========================================== -->
<div class="container">
<div class="row welcome-text">
<h1>go camping!</h1>
<ol>
<li><span>join campfire</span></li>
<li><span>find a campsite</span></li>
<li><span>go camping!</span></li>
<li><span>share your camping experience with the community :-)</span></li>
</ol>
</div>
</div>
<!-- fill remaining space on page to keep footer at bottom -->
<div class="push"></div>
</div>
<!-- end wrapper -->
<!-- Footer ================================================ -->
<footer class="footer">
<div class="container">
<!--<p class="pull-right"><a href="#top">back to top</a></p>-->
<hr>
<p class="pull-right">
<a href="#rss"><img src="/img/social/colour/rss.png" alt="RSS Feed" title="RSS Feed"></a>
<a href="#twitter"><img src="/img/social/colour/twitter.png" alt="Twitter" title="Twitter"></a>
<a href="#facebook"><img src="/img/social/colour/facebook.png" alt="Facebook" title="Facebook"></a>
<a href="#google"><img src="/img/social/colour/google+.png" alt="Google+" title="Google+"></a>
</p>
Handcrafted by Mike Walton <a href="mailto:mickwalton@gmail.com">mickwalton@gmail.com</a>.<br/>
With thanks to <a href="http://twitter.github.com/bootstrap/">Bootstrap</a> & <a href="http://glyphicons.com/">Glyphicons</a>
</div>
</footer>
<!-- End Footer ============================================ -->
<!-- Load javascript at bottom of page for faster experience -->
<!-- include jQuery -->
<script src="js/vendor/jquery-1.9.1.min.js"></script>
<!-- include Bootstrap jQuery helper -->
<script src="js/vendor/bootstrap.min.js"></script>
<!-- include our javascript -->
<script src="js/main.js"></script>
</body>
</html>