forked from smashingmagazine/old-wordpress-install
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebar.php
More file actions
37 lines (24 loc) · 925 Bytes
/
sidebar.php
File metadata and controls
37 lines (24 loc) · 925 Bytes
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
<?php
/**
* Sidebar template.
*
* @package Smashing Magazine
*/
?>
<aside id="wpsidebar" class="sb" role="complementary">
<div class="col side">
<?php get_search_form(); ?>
<?php get_template_part( 'parts/ad/sidebar', 'a' ); ?>
<?php get_template_part( 'parts/sidebar/newsletter' ); ?>
<?php get_template_part( 'parts/ad/sidebar', 'b' ); ?>
<?php get_template_part( 'parts/sidebar/products' ); ?>
<?php get_template_part( 'parts/ad/sidebar', 'c' ); ?>
<?php get_template_part( 'parts/sidebar/mediatemple' ); ?>
<?php get_template_part( 'parts/ad/sidebar', 'special' ); ?>
<?php get_template_part( 'parts/sidebar/jobs' ); ?>
<?php get_template_part( 'parts/ad/sidebar', 'skyscraper' ); ?>
<?php #get_template_part( 'parts/sidebar/conf' ); ?>
<?php get_template_part( 'parts/ad/sidebar', 'd' ); ?>
<?php get_template_part( 'parts/ad/sidebar', 'skyscraper-two' ); ?>
</div>
</aside>