forked from SimonPadbury/b4st
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.php
48 lines (34 loc) · 1.08 KB
/
archive.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
<?php
/*
* Generally, Anything inside .row>.col-sm- is a 'Fundamental Content Block',
and can be re-organized from 3 rows, into 1 .row>.col-sm
*/
get_header(); ?>
<div id="page" class="container-responsive">
<!-- row & col-sm *could* be removed.. mayyyybe-->
<div class="row">
<div class="col-sm">
<!-- main, as opposed to, y'know.. sidebars. but what about other sections?-->
<div id="content" role="main">
<header class="page-header border-bottom">
<h1 class='page-title '>
<?php _e('', 'b4st'); echo single_cat_title(); ?>
</h1>
</header>
<!-- Wait, should archive-list go here? -->
</div><!-- /#content -->
</div>
</div><!-- /.row -->
<!-- row & col-sm *are* removed.. here, they have one in loop -->
<?php
// row-free zone
// index-loop provides article-list
get_template_part('loops/index-loop');
?>
<div class="row">
<?php
//sidebar is wrapped in col-sm-12
get_sidebar(); ?>
</div><!-- /.row -->
</div><!-- /.container-responsive -->
<?php get_footer(); ?>