-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.php
More file actions
37 lines (24 loc) · 745 Bytes
/
Copy pathindex.php
File metadata and controls
37 lines (24 loc) · 745 Bytes
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 get_header(); ?>
<div data-role="content">
<?php if (have_posts()) : ?>
<ul data-role="listview" data-inset="true">
<?php while (have_posts()) : the_post(); ?>
<li>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<p><?php the_excerpt(); ?></p>
</li>
<?php endwhile; ?>
</ul>
<?php else: ?>
<?php endif; ?>
<div class="ui-body ui-body-b " data-theme="a">
<h2>Meta</h2>
<div data-role="collapsible" data-collapsed="true">
<h2>Kategorien</h2>
<ul data-role="listview" data-inset="true">
<?php wp_list_categories( "title_li=" ); ?>
</ul>
</div>
</div>
</div>
<?php get_footer(); ?>