-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate-base.php
79 lines (77 loc) · 2.6 KB
/
template-base.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
<?php
// =============================================================================
// TEMPLATE NAME: Base
// -----------------------------------------------------------------------------
// Base template.
// =============================================================================
get_header();
if (is_home()) { ?>
<div class="header-base">
<div class="container">
<div class="row">
<div class="col-md-9">
<div class="title-base text-left">
<h1>
<?php esc_attr_e("Blog","landkit") ?>
</h1>
</div>
</div>
</div>
</div>
</div>
<div class="container content">
<?php
if (have_posts()) {
while (have_posts()) {
the_post();
?>
<hr class="space l" />
<div class="advs-box advs-box-side default-box <?php if (is_sticky()) echo "sticky-post"; ?>">
<div class="row">
<div class="col-md-12">
<h3>
<a href="<?php echo esc_url(get_the_permalink()) ?>">
<?php echo esc_attr(get_the_title()) ?>
</a>
</h3>
<div class="tag-row icon-row">
<span><i class="fa fa-calendar"></i><?php echo get_the_date(); ?></span>
<span><i class="fa fa-bookmark"></i><a href=""><?php echo the_category( ', ' ); ?></a></span>
<span><i class="fa fa-pencil"></i><?php echo get_the_author(); ?></span>
</div>
<hr class="space s" />
<p>
<?php echo get_the_excerpt(); ?>
</p>
<hr class="space xs" />
<a class="anima-button btn-text" href="<?php echo esc_url(get_the_permalink()) ?>">
<i class="fa fa-long-arrow-right"></i><?php esc_attr_e("Read more","landkit") ?>
</a>
</div>
</div>
</div>
<hr class="space l" />
<?php if (($wp_query->current_post +1) != ($wp_query->post_count)) {
echo('<hr class="default" />');
} ?>
<?php
}
wp_reset_postdata();
}
if ($wp_query->max_num_pages > 1) { ?>
<ul class="pagination-sm pagination-grid pagination default-pagination">
<li class="prev">
<?php echo get_previous_posts_link('◄'); ?>
</li>
<li class="next">
<?php echo get_next_posts_link('►', $wp_query->max_num_pages ); ?>
</li>
</ul>
<?php } ?>
</div>
<?php
} else {
landkit_the_content();
}
get_footer();
?>