-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfront.php
53 lines (52 loc) · 1.46 KB
/
front.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
<?php query_posts('showposts=1'); ?>
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<div id="middle_container">
<article>
<h2><a href="<?php the_permalink() ?>"> <?php the_title(); ?> </a></h2>
<div id="latest_content">
<?php the_content(); ?>
</div>
<?php the_post_thumbnail('latest-thumb'); ?>
</article>
</div>
<?php endwhile; ?>
<?php endif; ?>
<div id="main_wrap">
<?php query_posts('posts_per_page=4&offset=1'); ?>
<?php if (have_posts()) : ?>
<div id="main_top">
<?php while (have_posts()) : the_post(); ?>
<article class="one_quarter">
<div class="bordered">
<a href="<?php the_permalink() ?>">
<?php the_post_thumbnail('quarter-thumb'); ?>
<h2><?php the_title(); ?></h2>
</a>
</div>
</article>
<?php endwhile; ?>
</div>
<?php endif; ?>
<?php query_posts('offset=5'); ?>
<?php if (have_posts()) : ?>
<div id="main_bottom">
<?php while (have_posts()) : the_post(); ?>
<article class="one_quarter">
<div class="bordered">
<a href="<?php the_permalink() ?>">
<?php the_post_thumbnail('quarter-thumb'); ?>
<h2><?php the_title(); ?></h2>
</a>
</div>
</article>
<?php endwhile; ?>
<div class="post_navigation">
<ul>
<li class="prev_link"><?php previous_posts_link('Previous'); ?></li>
<li class="next_link"><?php next_posts_link('Next'); ?></li>
</ul>
</div>
</div>
<?php endif; ?>
<?php get_sidebar(); ?>
</div>