-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (75 loc) · 3.83 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
<!DOCTYPE html>
<!--
Copyright (C) Giannis Halvatzakis
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<html>
<head>
<meta charset="utf-8">
<title>Riptide</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<!--font-->
<link href='http://fonts.googleapis.com/css?family=Hammersmith+One&subset=latin,greek' rel='stylesheet' type='text/css'>
<!--Sticky footer-->
<link href="css/sticky-footer.css" rel="stylesheet">
<!--stylesheet-->
<link rel="stylesheet" href="css/style.css">
<!--meta for mobile devices-->
<meta name="viewport" content="width = device-width, initial-scale=1.0">
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
</head>
<body>
<script src="js/riptide.js"></script>
<div class="container">
<div id="wrapper" >
<header>
<div id="header">
<div id="logo">
<a href="index.html"><img src="img/logo.png" alt="Riptide Logo"></a>
</div>
<div id="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Features</a></li>
<li><a href="#">Download</a></li>
<li><a href="team.html">Team</a></li>
</ul>
</div>
<br>
</div>
</header>
<br>
<div id="main_content" class="col-xs-8 content">
<h1>News</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas condimentum at risus nec fringilla. Curabitur feugiat elit vitae orci semper bibendum. Fusce nec elit pellentesque, varius augue et, sollicitudin elit. Quisque consectetur urna rutrum neque molestie venenatis. Quisque placerat augue dignissim nibh ultricies fringilla. Nullam rhoncus tempus velit, a congue turpis. Maecenas nec vestibulum nisi. Proin et imperdiet elit. In dui elit, condimentum nec condimentum sit amet, ornare sit amet risus. Proin dapibus condimentum purus, sed aliquet justo scelerisque a. Aenean in velit id quam fermentum scelerisque. Morbi pulvinar feugiat turpis, ut posuere ipsum suscipit vel.
</p>
</div>
<div id="right-sidebar" class="col-xs-4 content">
<h2>Latest version</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas condimentum at risus nec fringilla. Curabitur feugiat elit vitae or</p>
</div>
</div>
</div>
<div class="clearfix"></div>
<div id="push"></div>
<footer>
<div class="container">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas condimentum at risus nec fringilla. </p>
</div>
</footer>
<!--Scripts-->
<script src="js/bootstrap.min.js"></script>
</body>
</html>