-
Notifications
You must be signed in to change notification settings - Fork 1
/
page-tools.php
executable file
·113 lines (100 loc) · 3.96 KB
/
page-tools.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
110
111
<?php
wp_enqueue_style('tools', get_template_directory_uri() . '/css/tools.css');
get_header();
?>
<section id="tools">
<div class="section-wrapper">
<h2>
Show me more <a href="#" class="blue-text">tools</a>
</h2>
<div class="tool-item">
<div class="layout">
<div class="for-lg tool-info blue-bg">
<div>
<strong>FOCUS</strong>
MAP MAKING
</div>
<div>
<strong>TEXT</strong>
</div>
<div>
<strong>TEXT</strong>
</div>
</div>
<div>
<div class="image flex">
<img src="https://resilienceacademy.ac.tz/wp-content/uploads/2019/06/Screen-Shot-2018-06-04-at-17.22.21-Copy.png?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80" alt="">
</div>
<div class="for-mob tool-info">
<div class="blue-bg">
<strong>FOCUS</strong>
MAP MAKING
</div>
</div>
<div class="tool-details">
<h3>GIS/Map Making</h3>
<p>
Under map making, Quantum Geographic Information System
is the tool which is an open source tools with large community
plugins and with a lot of integration of other tools.
</p>
</div>
</div>
</div>
</div>
<div class="tool-item">
<div class="layout">
<div class="for-lg tool-info yellowish-bg">
<div>
<strong>FOCUS</strong>
DRONES
</div>
<div>
<strong>TEXT</strong>
</div>
<div>
<strong>TEXT</strong>
</div>
</div>
<div>
<div class="image flex">
<img src="https://resilienceacademy.ac.tz/wp-content/uploads/2019/06/MG_5389-Copy.png?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1267&q=80" alt="">
</div>
<div class="for-mob tool-info">
<div class="yellowish-bg">
<strong>FOCUS</strong>
DRONES
</div>
</div>
<div class="tool-details">
<h3>Unmanned Vehicles - Drones</h3>
<p>
is the unmanned aerial vehicle innovation which capture very high
resolution and updated imageries with low cost Drone technology
can be applied to many applications.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="data">
<div class="section-wrapper">
<h2>DATA</h2>
<div class="data-item layout">
<div class="image">
<img src="https://resilienceacademy.ac.tz/wp-content/uploads/2019/10/Screenshot-from-2019-10-16-19-24-38.png?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80" alt="">
</div>
<div class="flex decorated-inset-box green-bg">
<div>
<h3>Our Geonode</h3>
<a href="https://geonode.resilienceacademy.ac.tz" class="button">
VIEW
</a>
</div>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>