forked from canyoupwnme/vulnourblog
-
Notifications
You must be signed in to change notification settings - Fork 1
/
right_bar.php
executable file
·57 lines (50 loc) · 1.65 KB
/
right_bar.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
<!-- Blog Search Well -->
<div class="well">
<h4>Blog Search</h4>
<form action="s_result.php" method="GET">
<div class="input-group">
<input name="key" type="text" class="form-control">
<span class="input-group-btn">
<button class="btn btn-default" type="submit">
<span class="glyphicon glyphicon-search"></span>
</button>
</span>
</div>
</form>
<!-- /.input-group -->
</div>
<!-- Blog Categories Well -->
<div class="well">
<h4>Blog Categories</h4>
<div class="row">
<div class="col-lg-6">
<ul class="list-unstyled">
<?php
foreach (categoryList() as $category) {
echo '<li><a href="category.php?id='.$category["category_id"].'">'.$category["category_name"].'</a>';
}
?>
</ul>
</div>
<!-- /.col-lg-6 -->
<!-- <div class="col-lg-6">
<ul class="list-unstyled">
<li><a href="#">Category Name</a>
</li>
<li><a href="#">Category Name</a>
</li>
<li><a href="#">Category Name</a>
</li>
<li><a href="#">Category Name</a>
</li>
</ul>
</div> -->
<!-- /.col-lg-6 -->
</div>
<!-- /.row -->
</div>
<!-- Side Widget Well -->
<!-- <div class="well">
<h4>Side Widget Well</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Inventore, perspiciatis adipisci accusamus laudantium odit aliquam repellat tempore quos aspernatur vero.</p>
</div> -->