-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchive.php
More file actions
39 lines (29 loc) · 1.01 KB
/
archive.php
File metadata and controls
39 lines (29 loc) · 1.01 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
<?php
/**
* Archive Template
*
* The archive template is a placeholder for archives that don't have a template file.
* Ideally, all archives would be handled by a more appropriate template according to the
* current page context (for example, `tag.php` for a `post_tag` archive).
*
* @subpackage Template
*/
global $sf_options;
get_header();
?>
<!-- #content Starts -->
<?php sf_content_before(); ?>
<div id="content" class="col-full">
<div id="main-sidebar-container">
<!-- #main Starts -->
<?php sf_main_before(); ?>
<section id="main" class="col-left">
<?php get_template_part( 'templates/loops/loop', 'archive' ); ?>
</section><!-- /#main -->
<?php sf_main_after(); ?>
<?php get_sidebar(); ?>
</div><!-- /#main-sidebar-container -->
<?php get_sidebar( 'alt' ); ?>
</div><!-- /#content -->
<?php sf_content_after(); ?>
<?php get_footer(); ?>