-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfront-page.php
More file actions
48 lines (47 loc) · 1.79 KB
/
front-page.php
File metadata and controls
48 lines (47 loc) · 1.79 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
38
39
40
41
42
43
44
45
46
47
48
<?php
/**
* Fornt-page elmercatcultural.cat
*
* This is the template for the front-page for the elmercatcultural project
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package elmercatcultural.cat
*/
// wp_enqueue_script('front-page');
get_header();
$page_ID = get_option('page_on_front');
?>
<?php echo do_shortcode('[superblockslider id="6813"]'); ?>
<section id="feed" class="front-page__section">
<div class="front-page__section-content">
<div class="front-page__feed">
<?= do_shortcode('[emc_feed post_type="event"]') ?>
<p><a class="underline small" href="/programacio">Programació cultural</a></p>
</div>
<hr>
<div class="front-page__feed">
<?= do_shortcode('[emc_feed post_type="workshop"]') ?>
<p><a class="underline small" href="/tallers">Tallers i bocins</a></p>
</div>
</div>
</section>
<section id="barris" class="front-page__section">
<div class="front-page__section-content">
<?php $section = get_field('section-1', $page_ID); ?>
<h2><?= $section['title']; ?></h2>
<p><?= $section['text']; ?></p>
<a href="<?= $section['link']['url']; ?>" class="underline small"><?= $section['link']['text'] ?></a>
</div>
</section>
<section id="participa" class="front-page__section">
<div class="front-page__section-content">
<?php $section = get_field('section-2', $page_ID); ?>
<h2><?= $section['title']; ?></h2>
<p><?= $section['text']; ?></p>
<a href="<?= $section['link']['url']; ?>" class="underline small"><?= $section['link']['text'] ?></a>
</div>
</section>
</main>
<?php
get_footer();