-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·58 lines (54 loc) · 1.93 KB
/
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
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
54
55
56
57
58
<!doctype html>
<html <?php language_attributes(); ?> ⚡>
<head>
<meta charset="utf-8">
<title><?php wp_title(); ?></title>
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no,minimal-ui">
<?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(); ?>" style="margin:0px;">
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
<?php the_title(); ?><br />
</a>
</h2>
<div class="summary">
<?php the_excerpt(); ?>
<div class="cta">
<a href="<?php the_permalink() ?>" style="color:#07C!important;text-decoration: underline;">
<strong>Read article</strong></a> / <span style="opacity:0.8"><?php the_time('F jS, Y') ?></span>
</div>
</div>
</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>