-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.php
48 lines (33 loc) · 1.13 KB
/
archive.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
<?php get_header(); ?>
<section id="main_section">
<?php if (have_posts()) : ?>
<section class="grey_plate">
<h1 id="blog_header">UCLA Game Lab Blog</h1>
</section>
<?php while (have_posts()) : the_post(); ?>
<article id="post-<?php the_ID(); ?>">
<header>
<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
<p>Posted on <?php the_time('F jS, Y'); ?> by <?php the_author(); ?></p>
</header>
<section>
<?php the_post_thumbnail('featured'); ?>
<?php the_excerpt(); ?>
</section>
<footer>
<p><?php the_tags('Tags: ', ', ', '<br>'); ?> Posted in <?php the_category(', '); ?> </p>
</footer>
</article>
<?php endwhile; ?>
<nav>
<p><?php posts_nav_link(' • '); ?></p>
</nav>
<?php else : ?>
<article>
<h1>Not Found</h1>
<p>Sorry, but the requested resource was not found on this site.</p>
<?php get_search_form(); ?>
</article>
<?php endif; ?>
</section>
<?php get_footer(); ?>