forked from jarrettfuller/Wordpress_theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
31 lines (25 loc) · 868 Bytes
/
Copy pathindex.php
File metadata and controls
31 lines (25 loc) · 868 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Jarrett's News Site</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/css/style.css" type="text/css" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<h1>Jarrett's New Site</h1>
</div>
<?php if(have_posts()): ?>
<ul>
<?php while(have_posts()): the_post(); ?>
<li>
<?php the_time('F j, Y'); ?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> by <?php the_author(); ?></li>
<p><?php the_content(); ?></p>
<p><?php the_category(','); ?></p>
<?php endwhile; ?>
</ul>
<?php endif; ?>
</body>
</html>