-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.php
More file actions
26 lines (19 loc) · 810 Bytes
/
search.php
File metadata and controls
26 lines (19 loc) · 810 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
<?php get_header(); ?>
<main>
<div class="container">
<div class="flex flex-col lg:flex-row justify-between gap-6">
<aside class="w-full lg:w-3/12 lg:order-2">
<?php get_template_part('templates/partials/sidebar-search'); ?>
<?php get_template_part('templates/partials/sidebar-group-stats', null, array('view' => 'list')); ?>
<?php get_template_part('templates/partials/sidebar-buttons'); ?>
</aside>
<div class="w-full lg:w-9/12 lg:order-1">
<h1><?php echo \Tofino\Helpers\title(); ?></h1>
<?php $init_query = get_initiatives_main(); ?>
<?php set_query_var('init_query', $init_query); ?>
<?php get_template_part('templates/tables/initiatives'); ?>
</div>
</div>
</div>
</main>
<?php get_footer(); ?>