forked from oeco/ekuatorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive-dataset.php
50 lines (41 loc) · 1.11 KB
/
archive-dataset.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
<?php get_header(); ?>
<section id="content">
<div id="map-archive" class="gray-page archive-page">
<?php if(have_posts()) : ?>
<section id="datasets" class="dataset-loop-section archive-list">
<div class="page-title row">
<div class="container">
<div class="twelve columns">
<h1><?php _e('Datasets', 'ekuatorial'); ?></h1>
</div>
</div>
</div>
<div class="container">
<?php get_template_part('loop', 'dataset'); ?>
<div class="four columns">
<div class="row sources">
<h3><?php _e('Sources', 'ekuatorial'); ?></h3>
<ul>
<?php wp_list_categories(array(
'taxonomy' => 'source',
'title_li' => ''
)); ?>
</ul>
</div>
<div class="row sources">
<h3><?php _e('Licenses', 'ekuatorial'); ?></h3>
<ul>
<?php wp_list_categories(array(
'taxonomy' => 'license',
'title_li' => ''
)); ?>
</ul>
</div>
</div>
</div>
</section>
<?php endif; ?>
</div>
</section>
<?php get_template_part('section', 'main-widget'); ?>
<?php get_footer(); ?>