forked from italia/design-scuole-wordpress-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
69 lines (56 loc) · 2.56 KB
/
home.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
<?php
/**
* The template for displaying home
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Design_Scuole_Italia
*/
get_header();
?>
<main id="main-container" class="main-container redbrown">
<?php
if ( have_posts() ) :
$messages = dsi_get_option( "messages", "home_messages" );
if($messages && !empty($messages)) {
get_template_part("template-parts/home/messages");
}
get_template_part("template-parts/hero/home");
get_template_part("template-parts/home/banner");
$home_is_selezione_automatica = dsi_get_option("home_is_selezione_automatica", "homepage");
get_template_part("template-parts/home/contenuti-in-evidenza");
if($home_is_selezione_automatica == "true_horizontal") {
get_template_part("template-parts/home/novita", "orizzontale");
}else if($home_is_selezione_automatica != "false") {
get_template_part("template-parts/home/novita", "verticale");
}
?>
<section class="section bg-white">
<?php get_template_part("template-parts/hero/servizi"); ?>
<?php get_template_part("template-parts/home/list", "servizi"); ?>
</section>
<?php
$visualizzazione_didattica = dsi_get_option("visualizzazione_didattica", "didattica");
if($visualizzazione_didattica == "scuole")
get_template_part("template-parts/home/didattica", "cicli");
else if($visualizzazione_didattica == "indirizzi")
get_template_part("template-parts/home/didattica", "cicli-indirizzi");
get_template_part("template-parts/home/didattica", "risorse");
// get_template_part("template-parts/luogo/map");
endif; // End of the loop.
$home_show_argomenti = dsi_get_option("home_show_argomenti", "homepage");
if(!$home_show_argomenti) $home_show_argomenti = "true_manual";
$argomenti = dsi_get_option("home_argomenti", "homepage");
if($home_show_argomenti == "true_evidenza") $argomenti = dsi_get_option("argomenti_evidenza", "argomenti");
if (is_array($argomenti) && count($argomenti)) {
?>
<section class="section bg-white">
<?php get_template_part("template-parts/hero/argomenti"); ?>
<?php get_template_part("template-parts/home/list", "argomenti"); ?>
</section>
<?php
}
?>
</main>
<?php
get_footer();