-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
56 lines (50 loc) · 1.75 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
<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php $post_type = get_post_type( $post->ID ); ?>
<?php if ($post_type == 'cita'): ?>
<div class="single-post quote">
<div class="marks">
<img src="<?php echo get_stylesheet_directory_uri() . '/images/icon-quote.gif'; ?>" alt="" />
</div>
<?php the_content(__( '[Read more →]', 'wpml_theme')); ?>
</div>
<?php else: ?>
<div class="single-post">
<h1>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" rel="bookmark">
<?php the_title(); ?>
</a>
</h1>
<div class="post-content">
<p class="date">
Written on <?php the_time('F j, Y'); ?> by <?php the_author() ?>. <?php the_category(', ') ?>.
</p>
<?php the_content(__('<p class="read_more_wrapper">Read more →</p>'));?>
</div>
<div class="post-meta">
</div><!--.postMeta-->
</div><!--.single-post-->
<?php endif; ?>
<?php endwhile; else: ?>
<div class="no-results">
<p><strong>There has been an error.</strong></p>
<p>We apologize for any inconvenience, please <a href="<?php bloginfo('url'); ?>/" title="<?php bloginfo('description'); ?>">return to the home page</a> or use the search form below.</p>
<?php get_search_form(); /* outputs the default Wordpress search form */ ?>
</div><!--noResults-->
<?php endif; ?>
<nav class="oldernewer">
<div class="older">
<p>
<?php next_posts_link('« next') ?>
</p>
</div><!--.older-->
<div class="newer">
<p>
<?php previous_posts_link('previous »') ?>
</p>
</div><!--.older-->
</nav><!--.oldernewer-->
</div><!--#content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>