forked from juanbrujo/WordPress-Starter-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
24 lines (21 loc) · 814 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title><?php wp_title( '|', true, 'right' ); bloginfo( 'name' ); $site_description = get_bloginfo( 'description', 'display' ); echo " | $site_description"; ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('stylesheet_url'); ?>" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<?php wp_head(); ?>
</head>
<body>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div id="container"><!-- #container -->
<?php the_title(); ?>
</div><!-- /#container -->
<?php endwhile; else: ?>
<p>:( Donnow what's that...</p>
<?php endif; ?>
<?php wp_footer(); ?>
</body>
</html>