-
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) · 5.15 KB
/
index.php
File metadata and controls
161 lines (118 loc) · 5.15 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 session_start();
include 'check_token.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>InfoGeek</title>
<link rel="stylesheet" href="resources\css\style.css">
<link rel="stylesheet" href="vendor\css\skeleton.css">
<link rel="stylesheet" href="vendor\css\fontawesome.min.css">
<link rel="stylesheet" href="vendor\css\all.css">
<link rel="stylesheet" href="vendor/css/bootstrap.min.css">
<script src="vendor/js/jquery.min.js"></script>
<script src="vendor/js/popper.js"></script>
<script src="vendor/js/bootstrap.min.js"></script>
</head>
<body>
<?php
if (isset($_SESSION['name'])) {
include 'navbar.php';
}
else{
session_destroy();
include 'navbar.php';
}
?>
<section class="row_user form_tab nav_fix clearfix">
<div class="d-none d-sm-block">
<div class="eight columns">
<label for="category_select"> Category : </label><select name="category_select"
class="form-control-inline ml-1 w-25 custom-select">
<option value="">Physics</option>
<option value="">Mathematics</option>
<option value="">Sports</option>
<option value="">Mechanival Engineering</option>
</select>
</div>
<div class="four columns">
<form class="form-inline w-100" style="display:inline-block;">
<input class="form-control mr-sm-2 w-50 border " type="text" placeholder="Search">
<button class="btn btn-outline-warning ml-1 ml-md-0" type="submit">Search</button>
</form>
</div>
</div>
</section>
<div class="row_user">
<div class="wrapper clearfix">
<div class="eight columns">
<div class="display_title">
LATEST POSTS
</div>
<!-- -----------mainpost--------- -->
<div class="main-post clearfix">
<img src="resources\img\berlin.jpg" alt="" class="post_image">
<div class="content">
<div class="post_title">This is the history behind the Large Hadron Collider</div>
<div class="post_by_info">
POST BY <div class="author">ANONYMOUS</div> ON <div class="post_date">
05/02/2020
</div>
</div>
</div>
</div>
<!-- ----------end of post--------- -->
<!-- -----------mainpost--------- -->
<div class="main-post clearfix">
<img src="resources\img\3.jpg" alt="" class="post_image">
<div class="content">
<div class="post_title">Tricks to be followed by students while solving a maths paper</div>
<div class="post_by_info">
POST BY <div class="author">ANONYMOUS</div> ON <div class="post_date">
05/02/2020
</div>
</div>
</div>
</div>
<!-- ----------end of post--------- -->
<!-- -----------mainpost--------- -->
<div class="main-post clearfix">
<img src="resources\img\3.jpg" alt="" class="post_image">
<div class="content">
<div class="post_title">Tricks to be followed by students while solving a maths paper</div>
<div class="post_by_info">
POST BY <div class="author">ANONYMOUS</div> ON <div class="post_date">
05/02/2020
</div>
</div>
</div>
</div>
<!-- ----------end of post--------- -->
<!-- -----------mainpost--------- -->
<div class="main-post clearfix">
<img src="resources\img\3.jpg" alt="" class="post_image">
<div class="content">
<div class="post_title">Tricks to be followed by students while solving a maths paper</div>
<div class="post_by_info">
POST BY <div class="author">ANONYMOUS</div> ON <div class="post_date">
05/02/2020
</div>
</div>
</div>
</div>
<!-- ----------end of post--------- -->
</div>
<?php include "rank_sidebar.php" ?>
</div>
</div>
<div class="row_user load_more-row clearfix">
<div class="load_more eight columns">
<span>Load More</span>
</div>
</div>
<?php include "footer.php" ?>
</body>
</html>