-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.php
36 lines (31 loc) · 926 Bytes
/
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
<?php
session_start();
include_once("functions.php");
$_SESSION["selected_page_user"] = "blog";
?>
<?php include_once("meta.php"); ?>
<body>
<?php include_once("header.php"); ?>
<div class="main-body">
<div class="container">
<main>
<div class="container">
<?php if(isset($_GET["search"]) && isset($_GET["keywords"]) && $_GET["keywords"] != NULL): ?>
<?php search($_GET["keywords"]); ?>
<?php else: ?>
<?php extract_articles("published"); ?>
<?php endif ?>
</div>
</main>
<?php include_once("aside.php"); ?>
</div></div>
<?php include_once("footer.php"); ?>
<!-- infolinks ads start-->
<script type="text/javascript">
var infolinks_pid = 3015466;
var infolinks_wsid = 0;
</script>
<script type="text/javascript" src="//resources.infolinks.com/js/infolinks_main.js"></script>
<!-- infolinks ads end-->
</body>
</html>