-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
161 lines (118 loc) · 4.09 KB
/
index.php
File metadata and controls
161 lines (118 loc) · 4.09 KB
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<?php
include 'config.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title><?php echo $ideaname; ?></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="css/bootstrap.css" rel="stylesheet">
<style type="text/css">
body {
margin: auto;
background-image: url('img/back.png');
padding-top: 0px;
padding-bottom: 40px;
}
.social {
margin-top: 50px;
}
.socialspan {
text-align: center;
font-size: 50px;
}
.social a:link, .social a:hover{
text-decoration: none;
}
.well {
background-color: #cfcfcf;
}
.tagline {
text-align: center;
margin-bottom: 20px;
}
.logo {
padding: 50px;
text-align: center;
}
a {
color: <?php echo $color; ?> !important;
}
</style>
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/font-awesome.css">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="img/logo.png">
</head>
<body>
<div class="container" style="width: 500px;">
<div class="logo">
<img src="<?php echo $ideatag ?>" />
</div>
<div class="tagline">
<h4><?php echo $ideatag ?></h4>
</div>
<!-- Main hero unit for a primary marketing message or call to action -->
<div class="hero-unit">
<h2><?php echo $ideaname; ?></h2>
<p>
<?php echo $ideatext ?>
</p>
<div class="well">
<h2>Sign Up »</h2>
<form class="input-prepend form-search" action="Subscribe.php" method="post">
<span class="add-on">Email</span><input class="span2" id="appendedPrependedInput" size="16" type="email" name="email">
<button type="submit" class="btn">Sign Up »</button>
</form>
</div>
</div>
<!-- Example row of columns -->
<div class="row social">
<?php if ($twitter != null) {
echo '<div class="span2 socialspan" class="twitter"><a href="http://www.twitter.com/';
echo $twitter;
echo '"><i class="icon-twitter-sign icon-large" target="_blank"></i></a></div>';
}; ?>
<?php if ($facebook != null) {
echo '<div class="span2 socialspan" class="facebook"><a href="http://www.facebook.com/';
echo $facebook;
echo '"><i class="icon-facebook-sign icon-large" target="_blank"></i></a></div>';
}; ?>
<?php if ($plus != null) {
echo '<div class="span2 socialspan" class="plus"><a href="';
echo $plus;
echo '"><i class="icon-google-plus-sign icon-large"></i></a></div>';
}; ?>
</div>
<hr>
<footer>
<p>© <?php echo $ideaname; ?> <?php echo $copyrightyear; ?></p>
</footer>
</div> <!-- /container -->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap-transition.js"></script>
<script src="js/bootstrap-alert.js"></script>
<script src="js/bootstrap-modal.js"></script>
<script src="js/bootstrap-dropdown.js"></script>
<script src="js/bootstrap-scrollspy.js"></script>
<script src="js/bootstrap-tab.js"></script>
<script src="js/bootstrap-tooltip.js"></script>
<script src="js/bootstrap-popover.js"></script>
<script src="js/bootstrap-button.js"></script>
<script src="js/bootstrap-collapse.js"></script>
<script src="js/bootstrap-carousel.js"></script>
<script src="js/bootstrap-typeahead.js"></script>
</body>
</html>