-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.php
executable file
·109 lines (76 loc) · 2.21 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?php get_header(); ?>
<div class="page-header clearfix">
<h1 class="pull-left">
<?php if ( is_search() ) : ?>
<?php _e( 'Search', 'orbis' ); ?>
<?php else : ?>
<?php post_type_archive_title(); ?>
<?php endif; ?>
<?php if ( ! is_search() ) : ?>
<small>
<?php
printf( __( 'Overview of %1$s', 'orbis' ),
strtolower( post_type_archive_title( '', false ) )
);
?>
</small>
<?php endif; ?>
</h1>
<?php if ( is_post_type_archive() ) : ?>
<a class="btn btn-primary pull-right" href="<?php echo orbis_get_url_post_new(); ?>">
<span class="glyphicon glyphicon-plus"></span> <?php _e( 'Add new', 'orbis' ); ?>
</a>
<?php endif; ?>
</div>
<div class="panel">
<header>
<h3><?php _e( 'Overview', 'orbis' ); ?></h3>
</header>
<?php get_template_part( 'templates/search_form' ); ?>
<?php if ( have_posts() ) : ?>
<table class="table table-striped table-bordered table-condense table-hover">
<thead>
<tr>
<?php if ( is_search() ) : ?><th><?php _e( 'Type', 'orbis' ); ?></th><?php endif; ?>
<th><?php _e( 'Title', 'orbis' ); ?></th>
</tr>
</thead>
<tbody>
<?php while ( have_posts() ) : the_post(); ?>
<tr id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ( is_search() ) : ?>
<td>
<?php
$post_type = get_post_type_object( get_post_type( $post ) );
echo $post_type->labels->singular_name;
?>
</td>
<?php endif; ?>
<td>
<div class="actions">
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php if ( get_comments_number() != 0 ) : ?>
<div class="comments-number">
<span class="glyphicon glyphicon-comment"></span>
<?php comments_number( '0', '1', '%' ); ?>
</div>
<?php endif; ?>
<div class="nubbin">
<?php orbis_edit_post_link(); ?>
</div>
</div>
</td>
</tr>
<?php endwhile; ?>
</tbody>
</table>
<?php else : ?>
<div class="content">
<p class="alt">
<?php _e( 'No results found.', 'orbis' ); ?>
</p>
</div>
<?php endif; ?>
</div>
<?php orbis_content_nav(); ?>
<?php get_footer(); ?>