-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew_test.php
More file actions
42 lines (29 loc) · 974 Bytes
/
new_test.php
File metadata and controls
42 lines (29 loc) · 974 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
38
39
40
41
42
<?php get_header(); ?>
<?php futurio_generate_header(true, true, true, false, false, true); ?>
<!-- start content container -->
<div class="row">
<div class="col-md-<?php futurio_main_content_width_columns(); ?> <?php futurio_sidebar_position('content') ?>">
<?php
if (have_posts()) {
while (have_posts()) : the_post();
get_template_part('content', get_post_format());
endwhile;
if (get_theme_mod('infinite_scroll', 'off') == 'off') {
the_posts_pagination();
}
do_action('futurio_after_index_pagination');
} else {
get_template_part('content', 'none');
}
?>
</div>
<?php
get_sidebar();
?>
</div>
<!-- end content container -->
<div>
<a href="https://climateaction.icomos.org/en/news/" target="_blank" rel="noopener noreferrer">News and events</a>
<?php the_title(); ?>
</div>
<?php get_footer(); ?>