-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchive-workshop.php
More file actions
37 lines (36 loc) · 1.41 KB
/
archive-workshop.php
File metadata and controls
37 lines (36 loc) · 1.41 KB
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
<?php
/**
* Template Name: Graella Tallers
*
* @package elmercatcultural.cat
*/
get_header();
?>
<main id="workshop-archive" class="site-main archive">
<header class="page-header">
<h1 class="page-title"><?= get_the_title() ?></h1>
<p class="page-description">
<?= get_the_content() ?>
</p>
</header><!-- .page-header -->
<nav class="workshop-archive__filters archive__filters">
<span>Filtra per categoria d'espectacle:</span>
<a data-term="all" class="small underline workshop-archive__filter archive__filter async-filter">Tots</a>
<a data-term="comunitari" class="small underline workshop-archive__filter archive__filter async-filter">Comunitari</a>
<a data-term="cultura" class="small underline workshop-archive__filter archive__filter async-filter">Cultura</a>
<a data-term="ecosocial" class="small underline workshop-archive__filter archive__filter async-filter">Ecosocial</a>
<div class="historic-container">
<a data-term="historic" class="small underline workshop-archive__filter archive__filter async-filter">Activitats passades</a>
</div>
</nav>
<div class="workshop-archive__grid async-grid">
</div>
<nav class="workshop-archive__pagination">
<ul class="workshop-archive__pages async-pager"></ul>
</nav>
<?php
/* Start the Loop */
?>
</main><!-- #main -->
<?php
get_footer();