forked from RawConnect/iPhone-App-Wordpress-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
37 lines (24 loc) · 723 Bytes
/
page.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
<?php
/**
* @package WordPress
* @subpackage RawApps iPhone Theme
*/
get_header();
?>
<div class="content_appicon"><?php rt_render_appicon()?></div>
<div class="content_body">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2 class="contains">
<?php the_title(); ?><span class="highlight"><?php the_title(); ?></span>
</h2>
<div style="clear:both;height:0px;"><!----></div>
<div class="description">
<?php the_content(__('(more...)')); ?>
</div>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
</div>
<div style="clear:both;height:0px;"><!----></div>
</div>
<?php get_footer(); ?>