-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
136 lines (134 loc) · 5.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Canidae [FTW] - Whiteside Ridge</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Oswald:300,400,500,600,700" type="text/css" rel="stylesheet" />
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" type="text/css" rel="stylesheet" />
<link href="assets/css/owl.carousel.min.css" type="text/css" rel="stylesheet" />
<link href="assets/css/owl.theme.default.min.css" type="text/css" rel="stylesheet" />
<link href="assets/css/style.min.css" type="text/css" rel="stylesheet" />
<link rel="shortcut icon" href="assets/images/favico.png">
</head>
<body id="top">
<div class="container-fluid">
<div class="row header">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-3 logo">
<a href="http://ftw.piken.eu"><img src="assets/images/logo.png"></a>
</div>
<div class="col-xs-12 col-md-3 col-md-offset-6 menu">
<a href="#about">
<div class="menu-item">
About
</div>
</a>
<a href="#contact">
<div class="menu-item">
Contact
</div>
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="owl-carousel owl-theme">
<div class="owl-lazy" data-src="assets/images/bg1.jpeg">
<div class="slide-details">
<h1>For Whiteside Ridge!</h1>
</div>
</div>
<div class="owl-lazy" data-src="assets/images/bg2.jpg">
<div class="slide-details">
<h1>Join us today!</h1>
</div>
</div>
<div class="owl-lazy" data-src="assets/images/bg3.jpg">
<div class="slide-details">
<h1>Come run with the Pack!</h1>
</div>
</div>
</div>
</div>
<div id="about" class="row">
<div class="container">
<div class="col-xs-12">
<div class="section-header">
<div class="section-header-inner">
ABOUT
</div>
</div>
<div>
<p>
Canidae [FTW] gets involved in a variety of WvW game play, in a mature, supportive and socially
comfortable, fun environment. The approach of the guild is one of co-operation and inclusiveness. Guild
members are involved members who take pride in participation, and whose input is welcomed and valued. We
aim to be a solid presence on Whiteside Ridge. A place to enjoy the game. While we are not a HC fight
guild, we take pride in setting our sights on a cohesive WvW group who can perform decently.
</p>
<p>We are always looking for:</p>
<ul>
<li>We are looking for people who enjoy a range of WvW activities. </li>
<li>We want players from both off-peak and prime times.</li>
<li>We want guildies who are willing to commit to having a nice place to hang out, with friendly people.
</li>
<li>We want guildies who are team players, attend our guild events, and like to do stuff with others.</li>
<li>Players of all skill levels welcome, however it is expected you will be running a server or guild
build and have a commitment to better play.</li>
<li>100% rep rule, when you are doing things with the guild.</li>
<li>Discord is essential.</li>
<li>18+ mature-minded people with manners </li>
</ul>
<p>Come run with the Pack! </p>
</div>
</div>
</div>
</div>
<div id="contact" class="row">
<div class="container">
<div class="col-xs-12">
<div class="section-header">
<div class="section-header-inner">
CONTACT
</div>
</div>
<div>
<p>Looking to find out more about guild or maybe apply? Find us in-game or on Discord.</p>
<ul>
<li>terrier.8732 - In-game</li>
<li>Doas#3238 - Discord</li>
</ul>
</div>
</div>
</div>
</div>
<div class="row footer">
© 2017 - 2022 Canidae [FTW]
<div class="footer-up">
<img src="assets/images/aup.png">
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="assets/js/owl.carousel.min.js" type="text/javascript"></script>
<script>
$(document).ready(function () {
$(".owl-carousel").owlCarousel({
items: 1,
loop: true,
lazyLoad: true,
autoplay: true
});
});
</script>
<script>
$(".footer-up").unbind().click(function () {
$("html, body").animate({ scrollTop: 0 }, 300);
});
</script
</body>
</html>