Skip to content

Commit

Permalink
Merge branch 'dev' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
francesco-filicetti committed Sep 21, 2023
2 parents 0de5740 + b619d3e commit 517e7ed
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
9 changes: 5 additions & 4 deletions src/unicms_template_italia/templates/bases/unicms_italia.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
{% load unicms_publications %}
{% load unicms_templates %}


{% block page_meta_description %}{{ webpath.meta_description }}{% endblock page_meta_description %}
{% block page_meta_keywords %}{{ webpath.meta_keywords }}{% endblock page_meta_keywords %}
{% block page_meta_robots %}{{ webpath.robots }}{% endblock page_meta_robots %}
Expand All @@ -28,8 +29,7 @@
{% endblock head_inits %}

{% block html_head %}
{% load_blocks section="html-head" as html_head %}
{{ html_head }}
{% load_blocks section="html-head" %}
{% endblock html_head %}

{% block social_tags %}
Expand Down Expand Up @@ -1348,6 +1348,8 @@
{% endblock container %}
<!-- end Container -->



{% block extra_scripts %}
{{ block.super }}
<script src="{% unicms_template_italia_static_path 'js/passive_listeners.js' %}"></script>
Expand All @@ -1356,7 +1358,6 @@
{% include "inits/search-input-handler.html" with cms_path_prefix=cms_path_prefix %}

{% block html_bottom %}
{% load_blocks section="html-bottom" as html_bottom %}
{{ html_bottom }}
{% load_blocks section="html-bottom" %}
{% endblock html_bottom %}
{% endblock extra_scripts %}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

{% load unicms_templates %}

{% settings_value "CAROUSEL_HERO_AUTOPLAY_TIMEOUT" as carousel_timeout %}
{% random_id as id %}

{% if carousel_items %}
Expand Down Expand Up @@ -86,7 +87,7 @@ <h1 class="no_toc">
slideSpeed : 300,
paginationSpeed : 400,
autoplay: true,
autoplayTimeout: 5000,
autoplayTimeout: {{ carousel_timeout|default:5000 }},
items : 1,
itemsDesktop : false,
itemsDesktopSmall : false,
Expand Down

0 comments on commit 517e7ed

Please sign in to comment.