Skip to content

Commit 87eaec1

Browse files
committed
Initial commit
0 parents  commit 87eaec1

File tree

263 files changed

+49157
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

263 files changed

+49157
-0
lines changed

404.php

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?php
2+
/**
3+
* 404 Template
4+
*
5+
* This template is displayed when the page being requested by the viewer cannot be found
6+
* or doesn't exist. From here, we'll try to assist the user and keep them browsing the website.
7+
* @link http://codex.wordpress.org/Pages
8+
*
9+
* @package WooFramework
10+
* @subpackage Template
11+
*/
12+
13+
get_header();
14+
?>
15+
16+
<!-- #content Starts -->
17+
<?php woo_content_before(); ?>
18+
<div id="content" class="col-full">
19+
20+
<div id="main-sidebar-container">
21+
22+
<!-- #main Starts -->
23+
<?php woo_main_before(); ?>
24+
<section id="main" class="col-left">
25+
<?php
26+
woo_loop_before();
27+
woo_get_template_part( 'content', '404' ); // Get the 404 content template file, contextually.
28+
woo_loop_after();
29+
?>
30+
</section><!-- /#main -->
31+
<?php woo_main_after(); ?>
32+
33+
<?php get_sidebar(); ?>
34+
35+
</div><!-- /#main-sidebar-container -->
36+
37+
<?php get_sidebar( 'alt' ); ?>
38+
39+
</div><!-- /#content -->
40+
<?php woo_content_after(); ?>
41+
42+
<?php get_footer(); ?>

archive-portfolio.php

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?php
2+
/**
3+
* "Portfolio" Post Type Archive Template
4+
*
5+
* This template file is used when displaying an archive of posts of the
6+
* "portfolio" post type. This is used with WooTumblog.
7+
*
8+
* @package WooFramework
9+
* @subpackage Template
10+
*/
11+
12+
global $woo_options;
13+
get_header();
14+
?>
15+
<!-- #content Starts -->
16+
<?php woo_content_before(); ?>
17+
<div id="content" class="col-full">
18+
19+
<div id="main-sidebar-container">
20+
21+
<!-- #main Starts -->
22+
<?php woo_main_before(); ?>
23+
<section id="main">
24+
<?php
25+
get_template_part( 'loop', 'portfolio' );
26+
?>
27+
</section><!-- /#main -->
28+
<?php woo_main_after(); ?>
29+
30+
<?php get_sidebar(); ?>
31+
32+
</div><!-- /#main-sidebar-container -->
33+
34+
<?php get_sidebar( 'alt' ); ?>
35+
36+
</div><!-- /#content -->
37+
<?php woo_content_after(); ?>
38+
39+
<?php get_footer(); ?>

archive.php

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?php
2+
/**
3+
* Archive Template
4+
*
5+
* The archive template is a placeholder for archives that don't have a template file.
6+
* Ideally, all archives would be handled by a more appropriate template according to the
7+
* current page context (for example, `tag.php` for a `post_tag` archive).
8+
*
9+
* @package WooFramework
10+
* @subpackage Template
11+
*/
12+
13+
global $woo_options;
14+
get_header();
15+
?>
16+
<!-- #content Starts -->
17+
<?php woo_content_before(); ?>
18+
<div id="content" class="col-full">
19+
20+
<div id="main-sidebar-container">
21+
22+
<!-- #main Starts -->
23+
<?php woo_main_before(); ?>
24+
<section id="main" class="col-left">
25+
26+
<?php get_template_part( 'loop', 'archive' ); ?>
27+
28+
</section><!-- /#main -->
29+
<?php woo_main_after(); ?>
30+
31+
<?php get_sidebar(); ?>
32+
33+
</div><!-- /#main-sidebar-container -->
34+
35+
<?php get_sidebar( 'alt' ); ?>
36+
37+
</div><!-- /#content -->
38+
<?php woo_content_after(); ?>
39+
40+
<?php get_footer(); ?>

0 commit comments

Comments
 (0)