Created
March 30, 2017 00:16
-
-
Save devloprs/9f3959d45656e893bc3290c7babdae6b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<!DOCTYPE html> | |
<html <?php language_attributes(); ?>> | |
<head> | |
<meta charset="<?php bloginfo('charset'); ?> "> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title><?php bloginfo('name'); ?> | <?php wp_title(); ?></title> | |
<!-- font awesome icons --> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> | |
<!-- Bootstrap core CSS --> | |
<link href="<?php bloginfo('template_url'); ?>/css/bootstrap.min.css" rel="stylesheet"> | |
<!-- Custom styles for this template --> | |
<link href="<?php bloginfo('stylesheet_url'); ?>" rel="stylesheet"> | |
<?php wp_head(); ?> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="blog-header"> | |
<h1 class="blog-title"><?php bloginfo('name'); ?></h1> | |
<p class="lead blog-description"><?php bloginfo('description'); ?></p> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment