-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.php
480 lines (454 loc) · 18.5 KB
/
blog.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
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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
<?php
// DO NOT REMOVE THIS LINE!
include 'conf/config.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Latest Blog Posts - <?=$mofh['title'];?></title>
<meta name="description" content="">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.css" rel="stylesheet">
<link href="css/flaticon.css" rel="stylesheet">
<link href="css/fopen-sans.css" rel="stylesheet">
<link href="css/raleway-webfont.css" rel="stylesheet">
<link href="css/lato.css" rel="stylesheet">
<link href="css/idangerous.swiper.css" rel="stylesheet">
<link href="css/magnific-popup.css" rel="stylesheet">
<link href="img/favicon.ico" rel="shortcut icon">
<link href="css/style.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" type="text/css">
</head>
<body>
<div class="mofh-main-header">
<div class="container no-padding-sm">
<div class="row">
<div class="col-sm-6 no-padding">
<div class="soc-icons">
<a href="<?=$mofh['fb'];?>"><i class="fa fa-facebook"></i></a>
<a href="<?=$mofh['twitter'];?>"><i class="fa fa-twitter"></i></a>
<a href="<?=$mofh['rss'];?>"><i class="fa fa-rss"></i></a>
<a href="<?=$mofh['forum_url'];?>"><i class="fa fa-comments"></i></a>
</div>
</div>
<div class="col-sm-6 no-padding-right">
<section class="header-info">
<h6>
<a href="register.php"><i class="fa"><img src="img/icon-2.png" alt="icon"></i> Sign Up</a>
<a class="popup-with-form" href="#signin"><i class="fa"><img height="17" src="img/icon-11.png" width="12" alt="icon"></i>Login</a>
<a href="<?=$mofh['forum_url'];?>"><i class="fa fa-location-arrow"></i> Support</a>
<a href="mailto:<?=$mofh['email'];?>"><i class="fa fa-envelope"></i><?=$mofh['email'];?></a>
</h6>
</section>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-6 col-sm-offset-6">
<!-- form itself -->
<form action="<?=$mofh['cpanel'];?>/login.php" method="post" role="form" id="signin" name="login" class="mfp-hide white-popup-block login-form">
<div class="input-group form-float">
<span class="input-group-addon">
<i class="material-icons">person</i>
</span>
<div class="form-line">
<input name="uname" id="mod_login_username" type="text" class="form-control" alt="username" size="10" class="form-control" placeholder="Username" required>
</div>
</div>
<div class="input-group">
<span class="input-group-addon">
<i class="material-icons">lock</i>
</span>
<div class="form-line">
<input type="password" id="mod_login_password" name="passwd" class="form-control" size="10" alt="password" placeholder="Password" required>
</div>
</div>
<div class="form-group">
<tr><th>Language<td><select class="form-control" size="1" name="language">
<option value="English" selected="selected">English</option>
<option>Afrikaans</option>
<option>Albanian</option>
<option>Amharic</option>
<option>Arabic</option>
<option>Armenian</option>
<option>Azeerbaijani</option>
<option>Basque</option>
<option>Belarusian</option>
<option>Bengali</option>
<option>Bosnian</option>
<option>Bulgarian</option>
<option>Burmese</option>
<option>Catalan</option>
<option>Cebuano</option>
<option>Chichewa</option>
<option>Chinese_simplified</option>
<option>Chinese_traditional</option>
<option>Corsican</option>
<option>Croatian</option>
<option>Czech</option>
<option>Danish</option>
<option>Dutch</option>
<option>English</option>
<option>Esperanto</option>
<option>Estonian</option>
<option>Farsi</option>
<option>Filipino</option>
<option>Finnish</option>
<option>French</option>
<option>Frisian</option>
<option>Galician</option>
<option>Georgian</option>
<option>German</option>
<option>Greek</option>
<option>Gujarati</option>
<option>Haitian Creole</option>
<option>Hausa</option>
<option>Hawaiian</option>
<option>Hebrew</option>
<option>Hindi</option>
<option>Hmong</option>
<option>Hungarian</option>
<option>Icelandic</option>
<option>Igbo</option>
<option>Indonesian</option>
<option>Irish</option>
<option>Italian</option>
<option>Japanese</option>
<option>Javanese</option>
<option>Kannada</option>
<option>Kazakh</option>
<option>Khmer</option>
<option>Korean</option>
<option>Kurdish</option>
<option>Kyrgyz</option>
<option>Lao</option>
<option>Latin</option>
<option>Latvian</option>
<option>Lithuanian</option>
<option>Luxembourgish</option>
<option>Macedonian</option>
<option>Malagasy</option>
<option>Malay</option>
<option>Malayalam</option>
<option>Maltese</option>
<option>Maori</option>
<option>Marathi</option>
<option>Mongolian</option>
<option>Nepali</option>
<option>Norwegian</option>
<option>Pashto</option>
<option>Persian</option>
<option>Polish</option>
<option>Portuguese</option>
<option>Punjabi</option>
<option>Romanian</option>
<option>Russian</option>
<option>Samoan</option>
<option>Scots Gaelic</option>
<option>Serbian</option>
<option>Sesotho</option>
<option>Shona</option>
<option>Sindhi</option>
<option>Sinhala</option>
<option>Slovak</option>
<option>Slovenian</option>
<option>Somali</option>
<option>Spanish</option>
<option>Sundanese</option>
<option>Swahili</option>
<option>Swedish</option>
<option>Tajik</option>
<option>Tamil</option>
<option>Telugu</option>
<option>Thai</option>
<option>Turkish</option>
<option>Ukrainian</option>
<option>Urdu</option>
<option>Uzbek</option>
<option>Vietnamese</option>
<option>Welsh</option>
<option>Xhosa</option>
<option>Yiddish</option>
<option>Yoruba</option>
<option>Zulu</option>
</select>
</td></tr>
</div>
<div class="row">
<div class="col-xs-12">
<button class="btn btn-block bg-red waves-effect">SIGN IN</button>
</div>
</div>
<div class="row m-t-15 m-b--20">
<div class="col-xs-6">
<a href="signup.php">Register Now!</a>
</div>
<div class="col-xs-6 align-right">
<a href="<?=$mofh['cpanel'];?>/lostpassword.php">Forgot Password?</a>
</div>
</div>
<script src="material.js"></script>
</form>
</div>
</div>
</div>
<!--
*******************
NAV MENU
******************
-->
<div class="mofh-menu-wrap">
<div class="container">
<div class="row">
<div class="col-sm-3 no-padding">
<a href="index.php"><img height ="75" src="<?=$mofh['logo'];?>" width="175" alt="logo" class="logo-menu"></a>
</div>
<div class="col-sm-9 col-lg-7 col-lg-offset-2 no-padding">
<nav class="mofh-nav-menu">
<button class="menu-toggle">
<span class="icon"></span>
<span class="icon"></span>
<span class="icon"></span>
</button>
<ul class="main-menu">
<li class="menu-item active menu-item-has-children">
<a href="/">Home</a>
</li>
<li class="menu-item menu-item-has-children"><a href="freehosting.php">Free Hosting</a></li>
<li class="menu-item menu-item-has-children"><a href="hosting.php">Premium Hosting</a>
<ul class="sub-menu">
<li class="menu-item menu-item-has-children"><a href="hosting.php">VPS Plans</a></li>
<li class="menu-item menu-item-has-children"><a href="hosting.php">Cloud Hosting</a></li>
<li class="menu-item menu-item-has-children"><a href="servers.php">Dedicated Server</a></li></ul></li>
<li class="menu-item menu-item-has-children"><a href="blog.php">Blog</a></li>
<li class="menu-item menu-item-has-children"><a href="<?=$mofh['forum_url'];?>">Forum</a></li>
</ul>
</nav>
</div>
</div>
</div>
</div>
<!--
*******************
TOP BANNER
******************
-->
<div class="mofh-top-header overlay img-bg">
<img src="img/top-banner.jpg" alt="banner" class="hidden">
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">
<div class="wrapper">
<div class="heading">blog</div>
<div class="subheding">
<a href="index.php" class="link">home</a><span class="round"></span>
<a href="#" class="link">pages</a><span class="round"></span>
<a href="blog.php" class="link active">blog</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!--
*******************
BLOG
******************
-->
<div class="mofh-blog padd">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="heading-section text-center">
Latest From the Blog
</div>
<h3 class="section-subheading text-center">
Most Recent Posts on TechHub
</h3>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="mofh-wrap-blog">
<img src="https://preview.ibb.co/kZqXrd/Alternative_to_Google_Ad_Sense.png" alt="photo" class="img-responsive">
<div class="wrapper">
<div class="heading blog"><a href="https://techub.pw/blog/adsense-alternatives/">Top 5 AdSense Alternatives to Earn More in 2018</a></div>
<div class="text-blog">
By: <span class="author">Rana Khashif Sarfraz</span> Sep 13 2018.
</div>
<div class="line"></div>
<div class="blog-info">
Here are the most awaited article on AdSense alternatives, in we have mentioned more than 4 AdSense Alternatives to boost your earings
</div>
<a href="https://techub.pw/blog/adsense-alternatives/" class="mofh-btn classic classic-x">continue reading</a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="mofh-wrap-blog">
<img src="https://3.bp.blogspot.com/-CezBEzJbzHc/WvW-QA3G9SI/AAAAAAAAAJw/w8Fe5gY6kg8SPRnG-MXa13oWXnDXm31ZACLcBGAs/s640/maxresdefault.jpg" alt="photo" class="img-responsive">
<div class="wrapper">
<div class="heading blog"><a href="https://techub.pw/blog/get-free-ssl-with-free-hosting/">How to Get Free SSL with Free Hosting on KHAS Web Hosting</a></div>
<div class="text-blog">
By: <span class="author">Rana Khashif Sarfraz</span> Sep 08 2018.
</div>
<div class="line"></div>
<div class="blog-info">
You want to have SSL, but not to pay a fortune? We do too! That is why, in this article, we will tell you how to get Free SSL.
</div>
<a href="https://techub.pw/blog/get-free-ssl-with-free-hosting/" class="mofh-btn classic classic-x">continue reading</a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="mofh-wrap-blog">
<img src="https://1.bp.blogspot.com/-fWfOb6sIzMM/W2VFbsUAmUI/AAAAAAAAAGM/EDProPS83O0HJFwoD-uzklY1LUOogcr2wCLcBGAs/s640/khas.jpg" alt="photo" class="img-responsive">
<div class="wrapper">
<div class="heading blog"><a href="https://techub.pw/blog/make-money-in-student-life/">A GUIDE TO MAKE MONEY IN STUDENT LIFE</a></div>
<div class="text-blog">
By: <span class="author">Rana Khashif Sarfraz</span> July 25 2018.
</div>
<div class="line"></div>
<div class="blog-info">
An Ultimate to Guide to Make Money in Student Life also includes ways of Making Money from Facebook, YouTube and also Make Money from your Website
</div>
<a href="https://techub.pw/blog/make-money-in-student-life/" class="mofh-btn classic classic-x">continue reading</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="mofh-wrap-blog">
<img src="https://extraimage.net/images/2018/10/14/7309f17c8e9189671bf762d7d8d0f3db.jpg" alt="photo" class="img-responsive">
<div class="wrapper">
<div class="heading blog"><a href="https://techub.pw/blog/how-i-found-cpanel-x3-tech-stories/">How I Found CPanel X3 - Tech Stories</a></div>
<div class="text-blog">
By: <span class="author">PCTipsGR</span> July 2 2018.
</div>
<div class="line"></div>
<div class="blog-info">
I didn’t believe in my luck when I discovered cPanel X3 Theme was still available, on iFastnet Free Hosting and their Partners. At the time, I was so happy that I didn’t think carefully about what was going to happen and the mass problem that would be created. Here is what happened… How it all …
</div>
<a href="https://techub.pw/blog/how-i-found-cpanel-x3-tech-stories/" class="mofh-btn classic classic-x">continue reading</a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="mofh-wrap-blog">
<img src="https://preview.ibb.co/f1cVPo/cellular_towers_mobile_telecom_3g.jpg" alt="photo" class="img-responsive">
<div class="wrapper">
<div class="heading blog"><a href="https://techub.pw/blog/taxes-are-coming-back-to-pakistan/">Taxes are not coming back to Pakistani Network’s Mobile Load</a></div>
<div class="text-blog">
By: <span class="author">Rana Khashif Sarfraz</span> June 28 2018.
</div>
<div class="line"></div>
<div class="blog-info">
FBR to remain suspended Taxed on Mobile Load for upcoming few days, meanwhile enjoy tax free load.
</div>
<a href="https://techub.pw/blog/taxes-are-coming-back-to-pakistan/" class="mofh-btn classic classic-x">continue reading</a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="mofh-wrap-blog">
<img src="https://www.joomlapolis.com/images/products/cbredirectbot/icon.svg" alt="photo" class="img-responsive">
<div class="wrapper">
<div class="heading blog"><a href="https://techub.pw/blog/redirect-html-page/">Redirect to another site from a simple HTML Page</a></div>
<div class="text-blog">
By: <span class="author">Rana Khashif Sarfraz</span> June 23 2018.
</div>
<div class="line"></div>
<div class="blog-info">
Do you want to redirect your visitors to another website, but you can't modify .htaccess?Here we will tell you how to redirect from a HTML page.
</div>
<a href="https://techub.pw/blog/redirect-html-page/" class="mofh-btn classic classic-x">continue reading</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!--
*******************
FOOTER
******************
-->
<footer class="mofh-footer">
<div class="container no-padding-sm">
<div class="row">
<div class="col-md-4 col-sm-6">
<a href="/register.php"><img src="<?=$mofh['logo'];?>" alt="logo"></a>
<div class="footer-info">
<?=$mofh['title'];?> is a web hosting provider, providing you with the best free hosting anyone can offer, and with premium options too, for advanced website owners.
</div>
<p class="contact"><a href="mailto:<?=$mofh['email'];?>"><i class="flaticon-letter"></i><?=$mofh['email'];?></a></p>
</div>
<div class="col-md-4 col-sm-6">
<div class="heading">Explore More</div>
<ul class="footer-menu classic">
<li class="menu-item"><a href="/">Home</a> </li>
<li class="menu-item"><a href="about.php">About Us</a> </li>
<li class="menu-item"><a href="freehosting.php">Free Hosting</a></li>
<li class="menu-item"><a href="hosting.php">Premium Hosting</a></li>
<li class="menu-item"><a href="vps.php">VPS Plans</a></li>
<li class="menu-item"><a href="hosting.php">Shared Hosting</a></li>
<li class="menu-item"><a href="cloud.php">Cloud VPS Slider</a></li>
<li class="menu-item"><a href="servers.php">Dedicated Servers</a></li>
<li class="menu-item"><a href="contact.php">Contact Us</a></li>
<li class="menu-item"><a href="team.php">Our team</a></li>
<li class="menu-item"><a href="faq.php">FAQ</a></li>
<li class="menu-item"><a href="<?=$mofh['forum_url'];?>">Forums</a></li>
</ul>
</div>
<div class="col-md-4 col-sm-12 text-xs-center text-sm-center">
<div class="heading">Follow us</div>
<div class="soc-icons">
<a href="<?=$mofh['fb'];?>"><i class="fa fa-facebook"></i>Facebook</a>
<a href="<?=$mofh['twitter'];?>"><i class="fa fa-twitter"></i>Twitter</a>
<a href="<?=$mofh['rss'];?>"><i class="fa fa-rss"></i>Blog</a>
<a href="<?=$mofh['forum_url'];?>"><i class="fa fa-comments"></i>Forums</a>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-sm-12 no-padding-sm">
<div class="footer-bottom">
<div class="container no-padding-sm">
<div class="row">
<div class="col-lg-6 col-xs-12 text-center text-lg-left">
<div class="copyrigh">Copyright 2018 <?=$mofh['title'];?> - Free & Unlimited Web Hosting</div>
</div>
<div class="col-lg-6 col-xs-12">
<ul class="footer-menu">
<li class="menu-item"><a href="terms.php">Terms of Service</a></li>
<li class="menu-item"><a href="privacy.php">Privacy Policy</a></li>
<li class="menu-item"><a href="login.php">Login</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/idangerous.swiper.min.js"></script>
<script src="js/jquery.viewportchecker.min.js"></script>
<script src="js/jquery.circliful.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>