-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-add-content.html
289 lines (237 loc) Β· 10.5 KB
/
page-add-content.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
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>ShareFo Indonesia</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS
================================================== -->
<link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bootstrap-responsive.css">
<link rel="stylesheet" href="css/prettyPhoto.css" />
<link rel="stylesheet" href="css/flexslider.css" />
<link rel="stylesheet" href="css/custom-styles.css">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<link rel="stylesheet" href="css/style-ie.css"/>
<![endif]-->
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="img/favicon.png">
<!-- JS
================================================== -->
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/jquery.prettyPhoto.js"></script>
<script src="js/jquery.flexslider.js"></script>
<script src="js/jquery.custom.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#btn-blog-next").click(function () {
$('#blogCarousel').carousel('next')
});
$("#btn-blog-prev").click(function () {
$('#blogCarousel').carousel('prev')
});
$("#btn-client-next").click(function () {
$('#clientCarousel').carousel('next')
});
$("#btn-client-prev").click(function () {
$('#clientCarousel').carousel('prev')
});
});
$(window).load(function(){
$('.flexslider').flexslider({
animation: "slide",
slideshow: true,
start: function(slider){
$('body').removeClass('loading');
}
});
});
</script>
</head>
<body class="home">
<!-- Color Bars (above header)-->
<div class="color-bar-1"></div> <div class="color-bar-1"></div>
<div class="color-bar-2 color-bg"></div>
<div class="container">
<div class="row header"><!-- Begin Header -->
<!-- Logo
================================================== -->
<div class="span5 logo">
<a href="index.html"><img src="img/piccolo-logo.png" alt="" /></a>
</div>
<!-- Main Navigation
================================================== -->
<div class="span7 navigation">
<div class="navbar hidden-phone">
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="page-about.html">About</a></li>
<li><a href="#">U-Share</a></li>
<li class="active"><a href="page-contact.html">My Profile</a></li>
<li><a href="getstarted.html">Logout</a></li>
</ul>
</div>
<!-- Mobile Nav
================================================== -->
<form action="#" id="mobile-nav" class="visible-phone">
<div class="mobile-nav-select">
<select onchange="window.open(this.options[this.selectedIndex].value,'_top')">
<option value="">Navigate...</option>
<option value="index.html">Home</option>
<option value="page-about.html">About</option>
<option value="">U-Share</option>
<option value="page-contact.html">Profile</option>
<option value="page-me.html">Logout</option>
</select>
</div>
</form>
</div>
</div><!-- End Header -->
<!-- Blog Content
================================================== -->
<div class="row">
<!-- Blog Posts
================================================== -->
<div class="span8 blog">
<h3 class="title-bg">Add Content</h3>
<div class="well">
<div id="myTabContent" class="tab-content">
<div class="tab-pane active in" id="home">
<form id="tab">
<label>Title</label>
<input type="text" value="" class="input-xxlarge">
<label>Content</label>
<textarea value="" rows="8" class="input-xxlarge">
</textarea>
<label>Kategori</label>
<select name="DropDownKategori" id="DropDownKategori" class="input-large">
<option value="">Traveler</option>
<option value="">News</option>
<option value="">Tips & Guide</option>
<option value="">Q & A</option>
</select>
<label>Media</label>
<input type="file" name="pic" accept="image/*">
<div>
<br/>
<a href="#" class="btn btn-primary">Submit</a>
<a href="#" class="btn btn-primary">Back</a>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- Blog Sidebar
================================================== -->
<div class="span4 sidebar">
<!--Search-->
<section>
<div class="input-append">
<form action="#">
<input id="appendedInputButton" size="16" type="text" placeholder="Search"><button class="btn" type="button"><i class="icon-search"></i></button>
</form>
</div>
</section>
<!--Q&A-->
<h5 class="title-bg">Question and Answer</h5>
<ul class="popular-posts">
<li>
<a href="#"><img src="img/gallery/gallery-img-2-thumb.png" alt="Popular Post"></a>
<h6><a href="#"><label>[Hit Q]</label> Ada yang punya info tentang beasiswa LPDP kah?</a></h6>
<em>Posted on 09/04/17</em>
</li>
<li>
<a href="#"><img src="img/gallery/gallery-img-2-thumb2.png" alt="Popular Post"></a>
<h6><a href="#"><label>[New Q]</label>Bagaimana cara bikin visa untuk ke Jepang?</a></h6>
<em>Posted on 09/04/17</em>
<li>
<a href="#"><img src="img/gallery/gallery-img-2-thumb3.png" alt="Popular Post"></a>
<h6><a href="#">Di Jepang, untuk yang jurusan sastra terbaik ada dimana?</a></h6>
<em>Posted on 09/04/17</em>
</li>
</ul>
<!--Popular Posts-->
<h5 class="title-bg">Popular Posts</h5>
<ul class="popular-posts">
<li>
<a href="blog-single.htm"><img src="img/gallery/gallery-img-2-thumb.jpg" alt="Popular Post"></a>
<h6><a href="#">Lorem ipsum dolor sit amet consectetur adipiscing elit</a></h6>
<em>Posted on 09/01/15</em>
</li>
<li>
<a href="blog-single.htm"><img src="img/gallery/gallery-img-2-thumb.jpg" alt="Popular Post"></a>
<h6><a href="#">Nulla iaculis mattis lorem, quis gravida nunc iaculis</a></h6>
<em>Posted on 09/01/15</em>
<li>
<a href="blog-single.htm"><img src="img/gallery/gallery-img-2-thumb.jpg" alt="Popular Post"></a>
<h6><a href="#">Vivamus tincidunt sem eu magna varius elementum maecenas felis</a></h6>
<em>Posted on 09/01/15</em>
</li>
</ul>
</div>
</div>
</div> <!-- End Container -->
<!-- Footer Area
================================================== -->
<div class="footer-container"><!-- Begin Footer -->
<div class="container">
<div class="row footer-row">
<div class="span2 footer-col">
<h5>Platform</h5>
<ul class="post-list">
<li><a href="#">Contack Us</a></li>
<li><a href="#">FAQ</a></li>
<li><a href="#">Term & Service</a></li>
<li><a href="#">Guide</a></li>
</ul>
</div>
<div class="span2 footer-col">
<h5>Features</h5>
<ul class="post-list">
<li><a href="#">Become Our Partner</a></li>
<li><a href="#">Job Opportunity</a></li>
<li><a href="#">PPIT</a></li>
<li><a href="#">Diaspora</a></li>
</ul>
</div>
<div class="span2 footer-col">
<h5>About Us</h5>
<img src="img/piccolo-footer-logo.png" alt="Piccolo" /><br /><br />
<address>
<strong>Sharing Information</strong><br />
Jiangsu 123, Fangshan 123<br />
Nanjing, China 12345<br />
</address>
</div>
<div class="span6 footer-col">
<ul>
<p><b>Sharefo</b> adalah situs web berbagi informasi. Lorem ipsum dolor sit amet, consectetur adipiscing elit. In interdum felis fermentum ipsum molestie sed porttitor ligula rutrum. Vestibulum lectus tellus, aliquet et iaculis sed, volutpat vel erat. Lorem ipsum dolor sit amet, consectetur adipiscing elit. In interdum felis fermentum ipsum molestie sed porttitor ligula rutrum. Vestibulum lectus tellus, aliquet et iaculis sed, volutpat vel erat. </p>
<p><a href="page-about.html">Read More..</a></p>
<ul class="social-icons">
<li><a href="#" class="social-icon facebook"></a></li>
<li><a href="#" class="social-icon twitter"></a></li>
<li><a href="#" class="social-icon dribble"></a></li>
</ul>
</ul>
</div>
</div>
<div class="row"><!-- Begin Sub Footer -->
<div class="span12 footer-col footer-sub">
<div class="row no-margin">
<div class="pull-right "><span class="left">© <script>document.write(new Date().getFullYear())</script> <a href="http://www.sharefo.com">Sharefo.com</a>, Sharing Information</span></div>
</div>
</div>
</div><!-- End Sub Footer -->
</div>
</div><!-- End Footer -->
</div>
</div><!-- End Footer -->
<!-- Scroll to Top -->
<div id="toTop" class="hidden-phone hidden-tablet">Back to Top</div>
</body>
</html>