mirror of
https://github.com/gantry/gantry5.git
synced 2026-08-19 01:15:04 -05:00
37 lines
1.4 KiB
Twig
37 lines
1.4 KiB
Twig
{% extends "@nucleus/page_head.html.twig" %}
|
|
|
|
{% block head_title -%}
|
|
{%- endblock %}
|
|
|
|
{% block head_application -%}
|
|
<jdoc:include type="head" />
|
|
{%- endblock %}
|
|
|
|
{% block head_platform -%}
|
|
{{ parent() }}
|
|
{% if gantry.theme.joomla %}
|
|
{% if gantry.platform.checkVersion(4) %} {# Joomla 4.x #}
|
|
{% if gantry.page.direction != 'rtl' %}
|
|
<link rel="stylesheet" href="{{ url('gantry-engine://css-compiled/bootstrap5.css') }}" type="text/css" />
|
|
{% else %}
|
|
<link rel="stylesheet" href="{{ url('gantry-engine://css-compiled/bootstrap5-rtl.css') }}" type="text/css" />
|
|
{% endif %}
|
|
{% elseif gantry.platform.checkVersion(3) %} {# Joomla 3.x #}
|
|
<link rel="stylesheet" href="{{ url('gantry-assets://css/bootstrap-gantry.css') }}" type="text/css" />
|
|
<link rel="stylesheet" href="{{ url('gantry-engine://css-compiled/joomla.css') }}" type="text/css" />
|
|
{% if gantry.page.direction == 'rtl' %}
|
|
<link rel="stylesheet" href="{{ url('media/jui/css/bootstrap-rtl.css') }}" type="text/css" />
|
|
{% endif %}
|
|
<link rel="stylesheet" href="{{ url('media/jui/css/icomoon.css') }}" type="text/css" />
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% if gantry.debug %}
|
|
<link rel="stylesheet" href="{{ url('media/cms/css/debug.css') }}" type="text/css" />
|
|
{% endif %}
|
|
{%- endblock %}
|
|
|
|
{% block head -%}
|
|
{{ parent() }}
|
|
{%- endblock %}
|