-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
36 lines (19 loc) · 1.07 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
<?php get_header(); ?>
<div id="main">
<div class="tag-line"><h2>Lassodesign is a estudy design run by Eduardo Lasso, doing simple and beutiful sites</h2></div>
<div id="portfolio-wrapper">
<h3>Latest Work</h3>
<ul id="portfolio-list">
<?php $loop = new WP_Query( array( 'post_type' => 'project', 'posts_per_page' => 3 ) ); ?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<li class="portfolio-item <?php echo strtolower($tax); ?> all">
<div class="thumb"><a href="<?php the_permalink() ?>"><?php the_post_thumbnail( array(270, 225) ); ?></a></div>
<h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
<p class="links"><a href="<?php the_permalink() ?>">More Details</a></p>
</li>
<?php endwhile; ?>
</ul>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>