-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar.php
63 lines (53 loc) · 1.72 KB
/
sidebar.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
<?php
/**
*
* Template name: sidebar.php
* sidebar template
*
*/
?>
<aside class="sidebar">
<section class="latest-post">
<a href="#" class="text-md text-dark title">Latest Post</a>
<div class="flex flex-column">
<?php
//get template file
get_template_part('templates/temp/sidebar', 'latest-post');
?>
</div>
</section>
<!-- end side bar latest post section-->
<!-- search area-->
<section class="search-area">
<div class="search">
<h3 class="text-md text-dark">Search</h3>
<!-- <form class="form-group">
<input type="search" class="input-control mr-sm-2" placeholder="Search">
<button class="btn btn-submit" type="submit"><i class="fa fa-search"></i></button>
</form> -->
<?php
//get searchform.php template file
get_search_form();
?>
</div>
</section>
<!-- end search area-->
<!-- popular tags-->
<section class="popular-tags">
<h4 class="text-md">Popular tags</h4>
<div class=" tags flex flex-row flex-wrap">
<?php
//get tags template file
get_template_part('templates/temp/post', 'tags')
?>
<!-- <a href=""><span>Camera</span></a>
<a href=""><span>bike</span></a>
<a href=""><span>Craft</span></a>
<a href=""><span>Photography</span></a>
<a href=""><span>article</span></a>
<a href=""><span>events</span></a>
<a href=""><span>wordpress</span></a> -->
</div>
</section>
<!-- end popular tags-->
</aside>