Skip to content

Instantly share code, notes, and snippets.

@2hamed
Last active December 16, 2015 11:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 2hamed/5425419 to your computer and use it in GitHub Desktop.
Save 2hamed/5425419 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title><?php bloginfo('name'); ?> | <?php is_home() ? bloginfo('description') : wp_title(''); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" />
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div class="wrapper">
<header class="main-header">
<figure class="logo">
<h1><!-- logo goes here --></h1>
</figure>
<nav class="main-nav"><!-- for navigation menus --></nav><!--.main-nav-->
</header><!--.main-header-->
<section class="content">
</section><!--.content-->
<aside class="sidebar">
</aside><!--.sidebar-->
<footer class="main-footer">
</footer><!--.main-footer-->
</div><!--.wrapper-->
<?php wp_footer(); ?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment