Advertisement
BakerMan

Amended robust theme ecp-page-template

Jun 14th, 2013
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.91 KB | None | 0 0
  1. <?php
  2. /**
  3. *  Tweaked for the "Robust" theme
  4. */
  5.  
  6. // Don't load directly
  7. if ( !defined('ABSPATH') ) { die('-1'); }
  8.  
  9. ?> 
  10. <?php get_header(); ?>
  11. <?php tribe_events_before_html(); ?>
  12.  
  13.     <div id="page-title" class="clearfix">
  14.         <div class="container">
  15.             <div class="grid two-third">
  16.                 <hgroup>
  17.                     <h1 class="tribe-events-cal-title"><?php tribe_events_title(); ?></h1>
  18.                     <h2>Your custom subtitle text</h2> <!-- Remove or amend this line to meet your requirements -->
  19.                 </hgroup>
  20.             </div>
  21.  
  22.             <?php if( ft_get_option('page_title_searchform') != 'off' ) : ?>
  23.                 <div id="top_search" class="grid one-third">
  24.                     <?php get_search_form(); ?>
  25.                 </div>
  26.             <?php endif; ?>
  27.  
  28.         </div>
  29.     </div>
  30.  
  31.     <div id="main" class="container">
  32.         <?php include(tribe_get_current_template()); ?>
  33.     </div>
  34.  
  35. <?php tribe_events_after_html(); ?>
  36. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement