This repository has been archived by the owner on Dec 1, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.php
72 lines (45 loc) · 1.58 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
/**
* The main template file.
*
* @package WordPress
* @subpackage lucasr
*/
get_header();?>
<div class="row-fluid">
<div class="span12">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
<?php else : ?>
<?php get_template_part( 'content', 'none' ); ?>
<?php endif; // end have_posts() check ?>
</div> <!-- span12 -->
</div> <!-- row-fluid -->
<div class="row-fluid">
<div class="span12">
<?php $recent_posts = lucasr_get_recent_posts(); ?>
<?php if ( $recent_posts->have_posts() ) : ?>
<ul class="archive thumbnails">
<?php while ( $recent_posts->have_posts() ) : $recent_posts->the_post(); ?>
<li class="span6">
<div class="thumbnail">
<?php get_template_part( 'content', 'list' ); ?>
</div>
</li>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
<?php wp_reset_postdata(); ?>
</ul>
<?php else : ?>
<!-- Show no posts UI here -->
<?php endif; // end $recent_posts->have_posts() check ?>
</div> <!-- .span12 -->
</div> <!-- .row-fluid -->
<div class="row-fluid">
<div class="home-search span12">
<?php get_search_form(); ?>
</div> <!-- .span12 -->
</div> <!-- .row-fluid -->
<?php get_footer(); ?>