This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Thumbnail Support | |
add_theme_support( 'post-thumbnails' ); | |
// Custom Nav Bootsrap | |
require_once('wp_bootstrap_navwalker.php'); | |
// Header Menu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html lang="pt-br"> | |
<head> | |
<!-- meta --> | |
<meta charset="utf-8"> | |
<title><?php bloginfo('name'); ?></title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta name="description" content="<?php if ( is_single() ) { | |
single_post_title('', true); | |
} else { | |
bloginfo('name'); echo " - "; bloginfo('description'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php get_header(); ?> | |
<div class="jumbotron"> | |
<div class="container"> | |
<h1><?php bloginfo( 'description' ); ?></h1> | |
<p><?php bloginfo( 'admin_email' ); ?></p> | |
</div> | |
</div> | |
<div class="container"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Theme Name: WP Bootstrap | |
Theme URI: http://teamtreehouse.com/wordpress-bootstrap-theme-tutorial | |
Description: WordPress & Bootstrap Theme | |
Author URI: http://cidadesonho.com/ | |
Version: 1.0 | |
Tags: responsive, white, bootstrap | |
License: Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) | |
License URI: http://creativecommons.org/licenses/by-sa/3.0/ |