for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Class Sensei_Twentytwelve
*
* Responsible for wrapping twenty twelve theme Sensei content
* with the correct markup
* @since 1.9.0
*/
Class Sensei_Twentytwelve {
* Output opening wrappers
public function wrapper_start(){
?>
<div id="primary" class="site-content">
<div id="content" role="main" class="entry-content">
<?php }
* Output closing wrappers
public function wrapper_end(){ ?>
</div>
<?php get_sidebar(); ?>
}