This repository has been archived by the owner on Jan 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
88 lines (75 loc) · 3.73 KB
/
index.php
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
<?php include('base.php'); ?>
<body>
<a name="#header"></a>
<div class="header" id="header">
<div class="container">
<div class="navbar navbar-inverse">
<div class="navbar-inner">
<a data-target=".nav-collapse" data-toggle="collapse" class="btn btn-navbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<h1><a href="/" class="brand">CamperSurfing</a></h1>
<ul class="languages">
<li class="en"><a href="/en">English</a></li>
<li class="it"><a href="/it">Italiano</a></li>
<?php /*
<li class="de"><a href="/?locale=de_DE">Deutsch</a></li>
<li class="es"><a href="/?locale=es_ES">Español</a></li>
<li class="fr"><a href="/?locale=fr_FR">Français</a></li>
*/
?>
</ul>
<div class="nav-collapse collapse">
<ul class="nav" id="header-links">
<li><a id="home-link" href="#header" class="active">Home</a></li>
<li><a id="idea-link" href="#theidea"><?php echo _('The Idea'); ?></a></li>
<li><a id="faq-link" href="#faq"><?php echo _('FAQ'); ?></a></li>
<!-- <li><a href="#news"><?php echo _('News'); ?></a></li> -->
<li><a id="about-link" href="#about"><?php echo _('About'); ?></a></li>
<li><a id="contact-link" href="#contact"><?php echo _('Contact'); ?></a></li>
</ul>
</div> <!--/.nav-collapse -->
</div> <!-- /.navbar-inner-->
</div> <!-- ./navbar navbar-inverse -->
</div> <!-- ./container -->
</div>
<!-- ./header -->
<!-- Main banner start -->
<div class="main-banner">
<div class="container">
<div class="span8">
<h1><span class="small"><?php echo _('Are you looking for</span> great and safe camper spot?'); ?></h1>
<h3><?php echo _('CamperSurfing let you find a spot for your camper in all the World!'); ?></h3>
<form action="//gorjux.us1.list-manage.com/subscribe/post?u=7db505061fc2254f5c1957d0b&id=f40b7187f5"
method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<input type="email" placeholder="<?php echo _('email address'); ?>" name="EMAIL"
id="mce-EMAIL" class="span3 email" required>
<input type="submit" class="btn btn-submit btn-large"
value="<?php echo _('Submit'); ?>" name="subscribe"
id="mc-embedded-subscribe">
</form>
<p class="small-note">
<?php echo _("Keep in touch with us subscribing our newsletter!<br /> You'll be invited to join the BETA version when available."); ?>
</p>
<div>
<a class="header-facebook-icon" href="<?= FACEBOOK_LINK ?>"><i class="fa fa-facebook fa-4x"></i></a>
<a class="header-twitter-icon" href="<?= TWITTER_LINK ?>"><i class="fa fa-twitter fa-4x""></i></a>
</div>
</div>
</div>
</div>
<!-- Main banner end -->
<?php include('description.php'); ?>
<?php include('idea.php'); ?>
<?php include('gallery.php'); ?>
<?php include('faq.php'); ?>
<?php //include('news.php'); ?>
<!-- Using app start -->
<div class="using-app">
<img src="img/using-app.jpg" alt="A girl using a smartphone"/>
</div>
<!-- AUsing app start -->
<?php include('about-contact.php'); ?>
<?php include('footer.php'); ?>