-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.php
104 lines (98 loc) · 2.67 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
<?php get_header(); ?>
<?php
if(is_front_page()) {
?>
<div id="live-search">
<div class="container">
<div class="twelve columns">
<input type="text" placeholder="Search for posts, maps and briefings..." />
<div class="results-container"></div>
</div>
</div>
</div>
<section id="news" class="page-section row">
<div class="container">
<div class="twelve columns">
<div class="section-map">
<?php
jeo_map();
?>
</div>
</div>
</div>
</section>
<section id="site-intro">
<?php
$intro_texts = opendev_get_intro_texts();
if(!empty($intro_texts)) :
?>
<div class="container">
<div id="intro-texts" class="row">
<?php if($intro_texts[1]) : ?>
<div class="four columns">
<div class="text-item">
<div class="icon">
<?php if($intro_texts[1]['icon']) : ?>
<p class="icon-<?php echo $intro_texts[1]['icon']; ?>"></p>
<?php endif; ?>
</div>
<div class="content">
<h3><?php echo $intro_texts[1]['title']; ?></h3>
<p><?php echo $intro_texts[1]['content']; ?></p>
</div>
</div>
</div>
<?php endif; ?>
<?php if($intro_texts[2]) : ?>
<div class="four columns">
<div class="text-item">
<div class="icon">
<?php if($intro_texts[2]['icon']) : ?>
<p class="icon-<?php echo $intro_texts[2]['icon']; ?>"></p>
<?php endif; ?>
</div>
<div class="content">
<h3><?php echo $intro_texts[2]['title']; ?></h3>
<p><?php echo $intro_texts[2]['content']; ?></p>
</div>
</div>
</div>
<?php endif; ?>
<?php if($intro_texts[3]) : ?>
<div class="four columns">
<div class="text-item">
<div class="icon">
<?php if($intro_texts[3]['icon']) : ?>
<p class="icon-<?php echo $intro_texts[3]['icon']; ?>"></p>
<?php endif; ?>
</div>
<div class="content">
<h3><?php echo $intro_texts[3]['title']; ?></h3>
<p><?php echo $intro_texts[3]['content']; ?></p>
</div>
</div>
</div>
<?php endif; ?>
</div>
</div>
<?php
endif;
?>
</section>
<section id="latest-news">
<div class="section-title">
<div class="container">
<div class="twelve columns">
<h2><?php _e('Latest news', 'opendev'); ?></h2>
<?php get_template_part('section', 'query-actions'); ?>
</div>
</div>
</div>
<div class="container">
<?php get_template_part('loop', 'latest'); ?>
</div>
</section>
<?php //get_template_part('section', 'content-summary'); ?>
<?php } ?>
<?php // get_template_part('content', 'interactive-map'); ?>
<?php get_footer(); ?>