-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
53 lines (46 loc) · 1.42 KB
/
single.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!doctype html>
<html <?php language_attributes(); ?> ⚡>
<head>
<meta charset="utf-8">
<title><?php wp_title(); ?></title>
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
<?php get_template_part( 'style' ); ?>
<script async src="https://cdn.ampproject.org/v0.js"></script>
</head>
<body>
<header role="banner" class="header">
<a href="/" rel="home" class="logo">
<strong><?php bloginfo('name'); ?></strong> / <?php bloginfo('description'); ?>
</a>
<nav class="nav" role="navigation">
<ul class="nav-list">
<?php wp_nav_menu( array( 'theme_location' => 'header-menu' ) ); ?>
</ul>
</nav>
</header>
<main role="main" style="width: 760px;max-width: 100%;margin: auto;">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<article>
<div class="home">
<h2 id="post-<?php the_ID(); ?>">
<?php the_title(); ?><br />
</h2>
<?php the_content('Read the rest of this entry »'); ?>
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2 class="txt--center">Nothing found</h2>
<p class="txt--center">
<?php _e("Sorry, but you are looking for something that isn't here."); ?><br />
<a href="/">← Return home</a><br />
</p>
<?php endif; ?>
</div>
</div>
</article>
<?php get_template_part( 'footer' ); ?>
</main>
</body>
</html>