-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebar.php
More file actions
48 lines (45 loc) · 1.96 KB
/
sidebar.php
File metadata and controls
48 lines (45 loc) · 1.96 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
<?php
/**
* The sidebar containing the main widget area.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package comet
*/
?>
<div class="col-md-3 col-md-offset-1">
<div class="sidebar hidden-sm hidden-xs">
<div class="widget">
<h6 class="upper">Search blog</h6>
<form>
<input type="text" placeholder="Search.." class="form-control">
</form>
</div>
<div class="widget">
<h6 class="upper">Categories</h6>
<ul class="nav">
<li><a href="#">Fashion</a></li>
<li><a href="#">Tech</a></li>
<li><a href="#">Gaming</a></li>
<li><a href="#">Food</a></li>
<li><a href="#">Lifestyle</a></li>
<li><a href="#">Money</a></li>
</ul>
</div>
<div class="widget">
<h6 class="upper">Popular Tags</h6>
<div class="tags clearfix"><a href="#">Design</a><a href="#">Fashion</a><a href="#">Startups</a><a href="#">Tech</a><a href="#">Web</a><a href="#">Lifestyle</a></div>
</div>
<div class="widget">
<h6 class="upper">Latest Posts</h6>
<ul class="nav">
<li><a href="#">Checklists for Startups<i class="ti-arrow-right"></i><span>30 Sep, 2015</span></a></li>
<li><a href="#">The Death of Thought<i class="ti-arrow-right"></i><span>29 Sep, 2015</span></a></li>
<li><a href="#">Give it five minutes<i class="ti-arrow-right"></i><span>24 Sep, 2015</span></a></li>
<li><a href="#">Uber launches in Las Vegas<i class="ti-arrow-right"></i><span>20 Sep, 2015</span></a></li>
<li><a href="#">Fun with Product Hunt<i class="ti-arrow-right"></i><span>16 Sep, 2015</span></a></li>
</ul>
</div>
</div>
</div>
</div>