Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • project/yg_corporate_lite
  • issue/yg_corporate_lite-3385871
  • issue/yg_corporate_lite-3385880
  • issue/yg_corporate_lite-3386024
  • issue/yg_corporate_lite-3386026
  • issue/yg_corporate_lite-3386041
  • issue/yg_corporate_lite-3386047
  • issue/yg_corporate_lite-3419228
  • issue/yg_corporate_lite-3419371
  • issue/yg_corporate_lite-3419374
  • issue/yg_corporate_lite-3419377
11 results
Show changes
Showing
with 485 additions and 178 deletions
<header class="header fixed-top">
<div class="menubar">
<div class="container">
<div class="res-header d-lg-none">
{{page.logo}}
<div class="others-in-header">
{{page.language_block}}
<button class="open navbar-toggler d-lg-none" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent_1" aria-controls="navbarSupportedContent_1" aria-expanded="false" aria-label="Toggle navigation">
<svg xmlns="http://www.w3.org/2000/svg" width="150" height="118.75" viewBox="0 0 150 118.75">
<path data-name="Icon material-menu" d="M4.5,127.75h150V107.958H4.5Zm0-49.479h150V58.479H4.5ZM4.5,9V28.792h150V9Z" transform="translate(-4.5 -9)" fill="#141414"/>
</svg>
</button>
<button class="close navbar-toggler d-none d-lg-none" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent_1" aria-controls="navbarSupportedContent_1" aria-expanded="false" aria-label="Toggle navigation">
<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150" viewBox="0 0 150 150">
<path data-name="Union 80" d="M21.967,128.033A75,75,0,1,1,75,150,75,75,0,0,1,21.967,128.033ZM31.61,31.612A61.363,61.363,0,0,0,75,136.365l0,0A61.364,61.364,0,1,0,31.61,31.612ZM75,84.641,55.718,103.923l-9.641-9.64L65.36,75,46.078,55.718l9.641-9.641L75,65.36,94.283,46.078l9.64,9.641L84.641,75l19.282,19.282-9.64,9.64Z" fill="#181c31"/>
</svg>
</button>
</div>
</div>
<nav class="navbar navbar-expand-lg">
<div class="d-none d-lg-block">
{{page.logo}}
</div>
<div class="collapse navbar-collapse" id="navbarSupportedContent_1">
{{page.primary_menu}}
</div>
</nav>
</div>
</div>
</header>
{# Search #}
<div class="search-overlay modal fade" id="searchModal" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered">
<div class="content modal-content">
{{page.search}}
</div>
</div>
</div>
\ No newline at end of file
{#
/**
* @file
* Theme override for the basic structure of a single Drupal page.
*
* Variables:
* - logged_in: A flag indicating if user is logged in.
* - root_path: The root path of the current page (e.g., node, admin, user).
* - node_type: The content type for the current node, if the page is a node.
* - head_title: List of text elements that make up the head_title variable.
* May contain or more of the following:
* - title: The title of the page.
* - name: The name of the site.
* - slogan: The slogan of the site.
* - page_top: Initial rendered markup. This should be printed before 'page'.
* - page: The rendered page markup.
* - path_info.args: Array of URL arguments un aliassed.
* - page_bottom: Closing rendered markup. This variable should be printed after
* 'page'.
* - db_offline: A flag indicating if the database is offline.
* - placeholder_token: The token for generating head, css, js and js-bottom
* placeholders.
*
* @see template_preprocess_html()
*/
#}
{%
set body_classes = [
logged_in ? 'user-logged-in',
not root_path ? 'path-frontpage' : 'path-' ~ root_path|clean_class,
node_type ? 'node--type-' ~ node_type|clean_class,
db_offline ? 'db-offline',
]
%}
<!DOCTYPE html>
<html{{ html_attributes }}>
<head>
<head-placeholder token="{{ placeholder_token|raw }}">
<title>{{ head_title|safe_join(' | ') }}</title>
<css-placeholder token="{{ placeholder_token|raw }}">
<js-placeholder token="{{ placeholder_token|raw }}">
</head>
<body{{ attributes.addClass(body_classes) }} data-bs-spy="scroll" data-bs-target="#navbar-example2">
<a href="#main-content" class="visually-hidden-focusable">
{{ 'Skip to main content'|t }}
</a>
{{ page_top }}
{{ page }}
{{ page_bottom }}
<js-bottom-placeholder token="{{ placeholder_token|raw }}">
</body>
</html>
{# https://api.drupal.org/api/drupal/core!modules!system!templates!menu.html.twig/8
menu_name: The machine name of the menu.
items: A nested list of menu items. Each menu item contains:
attributes: HTML attributes for the menu item.
below: The menu item child items.
title: The menu link title.
url: The menu link url, instance of \Drupal\Core\Url
localized_options: Menu link localized options.
{#
/**
* @file
* Bootstrap Barrio's override to display a menu.
*
* Available variables:
* - menu_name: The machine name of the menu.
* - items: A nested list of menu items. Each menu item contains:
* - attributes: HTML attributes for the menu item.
* - below: The menu item child items.
* - title: The menu link title.
* - url: The menu link url, instance of \Drupal\Core\Url
* - localized_options: Menu link localized options.
* - is_expanded: TRUE if the link has visible children within the current
* menu tree.
* - is_collapsed: TRUE if the link has children within the current menu tree
* that are not currently visible.
* - in_active_trail: TRUE if the link is in the active trail.
*/
#}
{% import _self as menus %}
{# All menu and submenu items #}
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
{% for item in items %}
{# Menu with submenu #}
{% if item.below %}
<li class="">
<a href="{{ item.url }}" class="dropdown-toggle" data-toggle="dropdown" > {{ item.title }}z <b class="caret"></b> </a>
<ul class="dropdown-menu">
{# Menu -> Submenu #}
{% for item in item.below %}
<li ><a href="{{ item.url }}" {{ item.attributes }} > {{ item.title }} </a></li>
{% endfor %}
</ul>
</li>
{# Menu without submenu #}
{% else %}
{# Menu - Link #}
<li class=""><a href="{{ item.url }}" class="page-scroll" {{ item.attributes }} > {{ item.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
</div>
{#
We call a macro which calls itself to render the full tree.
@see http://twig.sensiolabs.org/doc/tags/macro.html
#}
{{ menus.menu_links(items, attributes, 0) }}
{% macro menu_links(items, attributes, menu_level) %}
{% import _self as menus %}
{% if items %}
{% if menu_level == 0 %}
<ul{{ attributes.addClass('nav navbar-nav')|without('id') }}>
{% else %}
<ul class="dropdown-menu">
{% endif %}
{% for item in items %}
{%
set classes = [
menu_level ? 'dropdown-item' : 'nav-item',
item.is_expanded ? 'menu-item--expanded',
item.is_collapsed ? 'menu-item--collapsed',
item.in_active_trail ? 'active',
item.below ? 'dropdown',
]
%}
<li{{ item.attributes.addClass(classes) }}>
{%
set link_classes = [
not menu_level ? 'nav-link',
item.in_active_trail ? 'active',
item.below ? 'dropdown-toggle',
item.url.getOption('attributes').class ? item.url.getOption('attributes').class | join(' '),
'nav-link-' ~ item.url.toString() | clean_class,
]
%}
{% if item.below %}
{{ link(item.title, item.url, {'class': link_classes, 'data-bs-toggle': 'dropdown', 'aria-expanded': 'false', 'aria-haspopup': 'true' }) }}
{{ menus.menu_links(item.below, attributes, menu_level + 1) }}
{% else %}
{{ link(item.title, item.url, {'class': link_classes}) }}
{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}
{% endmacro %}
<section class="blog-details">
<div class="container">
<h2 class="blog-title">{{label}}</h2>
<img class=" animate__animated animate__zoomIn" src="{{file_url(content.field_image['#items'].entity.uri.value)}}">
<div class="content animate__animated animate__fadeInLeft">
{{content.body.0}}
</div>
<div class="blog-comments animate__animated animate__fadeInRight">
{{content.comment.0}}
</div>
{% if logged_in %}
{% else %}
<div class="for-comment animate__fadeInRight">
<p><a href="{{url('<front>')}}/user/login">Login</a> or <a href="{{url('<front>')}}/user/register">Register</a> to post comments</p>
</div>
{% endif %}
</div>
</section>
\ No newline at end of file
{% extends "@bootstrap_barrio/layout/page.html.twig" %}
{#
/**
* @file
* Default theme implementation to display a single page.
* Bootstrap Barrio's theme implementation to display a single page.
*
* The doctype, html, head and body tags are not in this template. Instead they
* can be found in the html.html.twig template in this directory.
* can be found in the html.html.twig template normally located in the
* core/modules/system directory.
*
* Available variables:
*
......@@ -19,155 +22,103 @@
* Site identity:
* - front_page: The URL of the front page. Use this instead of base_path when
* linking to the front page. This includes the language domain or prefix.
*
* Navigation:
* - breadcrumb: The breadcrumb trail for the current page.
*
* - logo: The url of the logo image, as defined in theme settings.
* - site_name: The name of the site. This is empty when displaying the site
* name has been disabled in the theme settings.
* - site_slogan: The slogan of the site. This is empty when displaying the site
* slogan has been disabled in theme settings.
* Page content (in order of occurrence in the default page.html.twig):
* - title_prefix: Additional output populated by modules, intended to be
* displayed in front of the main title tag that appears in the template.
* - title: The page title, for use in the actual content.
* - title_suffix: Additional output populated by modules, intended to be
* displayed after the main title tag that appears in the template.
* - messages: Status and error messages. Should be displayed prominently.
* - tabs: Tabs linking to any sub-pages beneath the current page (e.g., the
* view and edit tabs when displaying a node).
* - action_links: Actions local to the page, such as "Add menu" on the menu
* administration interface.
* - node: Fully loaded node, if there is an automatically-loaded node
* associated with the page and the node ID is the second argument in the
* page's path (e.g. node/12345 and node/12345/revisions, but not
* comment/reply/12345).
*
* Regions:
* - page.top_header: Items for the top header region.
* - page.top_header_form: Items for the top header form region.
* - page.header: Items for the header region.
* - page.navigation: Items for the navigation region.
* - page.navigation_collapsible: Items for the navigation (collapsible) region.
* - page.highlighted: Items for the highlighted content region.
* - page.help: Dynamic help text, mostly for admin pages.
* - page.header_form: Items for the header form region.
* - page.highlighted: Items for the highlighted region.
* - page.primary_menu: Items for the primary menu region.
* - page.secondary_menu: Items for the secondary menu region.
* - page.featured_top: Items for the featured top region.
* - page.content: The main content of the current page.
* - page.sidebar_first: Items for the first sidebar.
* - page.sidebar_second: Items for the second sidebar.
* - page.footer: Items for the footer region.
* - page.featured_bottom_first: Items for the first featured bottom region.
* - page.featured_bottom_second: Items for the second featured bottom region.
* - page.featured_bottom_third: Items for the third featured bottom region.
* - page.footer_first: Items for the first footer column.
* - page.footer_second: Items for the second footer column.
* - page.footer_third: Items for the third footer column.
* - page.footer_fourth: Items for the fourth footer column.
* - page.footer_fifth: Items for the fifth footer column.
* - page.breadcrumb: Items for the breadcrumb region.
*
* @ingroup templates
* Theme variables:
* - navbar_top_attributes: Items for the header region.
* - navbar_attributes: Items for the header region.
* - content_attributes: Items for the header region.
* - sidebar_first_attributes: Items for the highlighted region.
* - sidebar_second_attributes: Items for the primary menu region.
*
* @see template_preprocess_page()
* @see bootstrap_barrio_preprocess_page()
* @see html.html.twig
*/
#}
{% set container = theme.settings.fluid_container ? 'container-fluid' : 'container' %}
{% if page.navigation or page.primary_menu %}
<nav id="menu" class="navbar navbar-default navbar-fixed-top">
<div class="container">
{% if page.navigation %}
<div class="navbar-header col-md-3">
{{ page.navigation }}
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span> </button>
</div>
{% endif %}
{% if page.primary_menu %}
<div class="col-md-9">
{{ page.primary_menu }}
</div>
{% endif %}
</div>
</nav>
{% endif %}
{# Main #}
{% block main %}
<div role="main" class="container blog-container js-quickedit-main-content">
<div class="row">
{# Header #}
{% if page.header %}
{% block header %}
<div class="col-sm-12" role="heading">
{{ page.header }}
</div>
{% endblock %}
{% endif %}
{# see https://www.drupal.org/project/drupal/issues/953034#comment-14192130 #}
{% set sidebar_first_exists = page.sidebar_first|render|striptags('<img><video><audio><drupal-render-placeholder>')|trim is not empty %}
{% set sidebar_second_exists = page.sidebar_second|render|striptags('<img><video><audio><drupal-render-placeholder>')|trim is not empty %}
{# Sidebar First #}
{% if page.sidebar_first %}
{% block sidebar_first %}
<aside class="col-sm-3" role="complementary">
{{ page.sidebar_first }}
</aside>
{% endblock %}
{% endif %}
{# Content #}
{%
set content_classes = [
page.sidebar_first and page.sidebar_second ? 'col-sm-6',
page.sidebar_first and page.sidebar_second is empty ? 'col-sm-9',
page.sidebar_second and page.sidebar_first is empty ? 'col-sm-9',
page.sidebar_first is empty and page.sidebar_second is empty ? 'col-sm-12'
]
%}
<section{{ content_attributes.addClass(content_classes) }}>
{# Highlighted #}
{% if page.highlighted %}
{% block highlighted %}
<div class="highlighted">{{ page.highlighted }}</div>
{% endblock %}
{% endif %}
{# Breadcrumbs #}
{% if breadcrumb %}
{% block breadcrumb %}
{{ breadcrumb }}
{% endblock %}
{% endif %}
{# Action Links #}
{% if action_links %}
{% block action_links %}
<ul class="action-links">{{ action_links }}</ul>
{% endblock %}
{% endif %}
{% block head %}
{% include '@yg_corporate_lite/header/header-1.html.twig' %}
{% endblock %}
{# Help #}
{% if page.help %}
{% block help %}
{{ page.help }}
{% endblock %}
{% block content %}
{% if sidebar_second_exists %}
<div class="sidebar-page dt-section">
<div class="container">
<div class="row">
<div class="col-lg-8 col-12">
{{ page.content }}
</div>
<div class="col-lg-4 col-12">
{{ page.sidebar_second }}
</div>
</div>
</div>
</div>
{% else %}
<div id="main" class="{{ container }}">
{{ page.breadcrumb }}
<div class="row row-offcanvas row-offcanvas-left clearfix">
<main{{ content_attributes }}>
<section class="section">
<a href="#main-content" id="main-content" tabindex="-1"></a>
{{ page.content }}
</section>
</main>
{% if sidebar_first_exists %}
<div{{ sidebar_first_attributes }}>
<aside class="section" role="complementary">
{{ page.sidebar_first }}
</aside>
</div>
{% endif %}
{% if sidebar_second_exists %}
<div{{ sidebar_second_attributes }}>
<aside class="section" role="complementary">
{{ page.sidebar_second }}
</aside>
</div>
{% endif %}
</div>
</div>
{% endif %}
{# Content #}
{% block content %}
<a id="main-content"></a>
{{ page.content }}
{% endblock %}
</section>
{# Sidebar Second #}
{% if page.sidebar_second %}
{% block sidebar_second %}
<aside class="col-sm-3" role="complementary">
{{ page.sidebar_second }}
</aside>
{% endblock %}
{% endif %}
</div>
</div>
{% endblock %}
{% if page.footer %}
{% block footer %}
<div id="footer">
<div class="container text-center">
<p>© 2018. All Rights Reserved.<br />
Theme Powered By <a href="http://www.youngglobes.com">Young Globes</a></p>
</div>
</div>
{% endblock %}
{% endif %}
{% block footer %}
{% include '@yg_corporate_lite/footer/footer.html.twig' %}
{% endblock %}
{#
/**
* @file
* Default theme implementation for a field.
*
* To override output, copy the "field.html.twig" from the templates directory
* to your theme's directory and customize it, just like customizing other
* Drupal templates such as page.html.twig or node.html.twig.
*
* Instead of overriding the theming for all fields, you can also just override
* theming for a subset of fields using
* @link themeable Theme hook suggestions. @endlink For example,
* here are some theme hook suggestions that can be used for a field_foo field
* on an article node type:
* - field--node--field-foo--article.html.twig
* - field--node--field-foo.html.twig
* - field--node--article.html.twig
* - field--field-foo.html.twig
* - field--text-with-summary.html.twig
* - field.html.twig
*
* Available variables:
* - attributes: HTML attributes for the containing element.
* - label_hidden: Whether to show the field label or not.
* - title_attributes: HTML attributes for the title.
* - label: The label for the field.
* - multiple: TRUE if a field can contain multiple items.
* - items: List of all the field items. Each item contains:
* - attributes: List of HTML attributes for each item.
* - content: The field item's content.
* - entity_type: The entity type to which the field belongs.
* - field_name: The name of the field.
* - field_type: The type of the field.
* - label_display: The display settings for the label.
*
* @see template_preprocess_field()
*
* @ingroup themeable
*/
#}
{% if label_hidden %}
{% if multiple %}
{% for item in items %}
{{ item.content }}
{% endfor %}
{% else %}
{% for item in items %}
{{ item.content }}
{% endfor %}
{% endif %}
{% else %}
{{ title_attributes }}>{{ label }}
{% if multiple %}
{% endif %}
{% for item in items %}
{{ item.content }}
{% endfor %}
{% if multiple %}
{% endif %}
{% endif %}
\ No newline at end of file
<section id="about" class="about-us dt-section">
<div class="container">
<div class="title-1">
<h2 class="animate__animated animate__fadeInUp">{{content.field_title.0}}</h2>
<div class="animate__animated animate__fadeInUp">{{content.field_description.0}}</div>
</div>
<div class="about-us-features">
<div class="row s-15">
{{content.field_features}}
</div>
</div>
</div>
</section>
\ No newline at end of file
<div class=" animate__animated animate__fadeInUp col-lg-4 col-md-6 col-12">
<div class="item">
<h3>{{content.field_title.0}}</h3>
<div class="item-content">
<img src="{{file_url(content.field_image['#items'].entity.uri.value)}}" alt="{{file_url(content.field_image['#items'].alt)}}">
{{content.field_description.0}}
</div>
</div>
</div>
\ No newline at end of file
<section id="blogs" class="blog-list dt-section">
<div class="container">
{{content.field_view.0}}
</div>
</section>
\ No newline at end of file
<section id="contact" class="contact dt-section" style="background-image:url('{{file_url(content.field_image['#items'].entity.uri.value)}}')">
<div class="container">
<div class="title-1">
<h2 data-aos="fade-up" data-aos-anchor-placement="bottom-bottom">{{content.field_title.0}}</h2>
</div>
<div class="yg-contact-form" data-aos="fade-up" data-aos-anchor-placement="bottom-bottom">
{{content.field_contact_form.0}}
</div>
</div>
</section>
\ No newline at end of file
<section class="error-pages">
<div class="container">
<div class="content animate__animated animate__zoomInDown">
<h1>{{content.field_title.0}}</h1>
<h2>{{content.field_title_2.0}}</h2>
{{content.field_description.0}}
<a href="{{content.field_link.0['#url']}}" title="{{content.field_link.0['#title']}}">{{content.field_link.0['#title']}}</a>
</div>
</div>
</section>
\ No newline at end of file
<section id="hero-slider" class="home-slider bg-image" style="background-image:url('{{file_url(content.field_image['#items'].entity.uri.value)}}')">
<div class="container">
<div class="home-slider-1 owl-carousel owl-theme">
{{content.field_slide}}
</div>
</div>
<div class="arrows">
<button class="prev">
<span class="arrow-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="94" height="150" viewBox="0 0 94 150">
<path data-name="Path 40648" d="M94,13.409,79.662,0,0,75l79.743,75L94,136.591,28.514,75Z" fill="#181c31"/>
</svg>
</span>
</button>
<button class="next">
<span class="arrow-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="94" height="150" viewBox="0 0 94 150">
<path data-name="Path 40647" d="M0,13.409,14.338,0,94,75,14.257,150,0,136.591,65.486,75Z" fill="#181c31"/>
</svg>
</span>
</button>
</div>
</section>
\ No newline at end of file
<section class="location-map">
{{content.field_description.0}}
</section>
\ No newline at end of file
<section id="news" class="recent-news dt-section">
<div class="container">
<div class="title-1" data-aos="fade-up" data-aos-anchor-placement="bottom-bottom">
<h2>{{content.field_title.0}}</h2>
</div>
<div class="news">
<div class="row data-aos="fade-up" data-aos-anchor-placement="bottom-bottom"">
{{content.field_news}}
</div>
</div>
</div>
</section>
\ No newline at end of file
<div data-aos="fade-up" data-aos-anchor-placement="bottom-bottom" class="col-lg-3 col-md-6 col-12">
<div class="item">
<img src="{{file_url(content.field_image['#items'].entity.uri.value)}}" alt="{{file_url(content.field_image['#items'].alt)}}">
<h3>{{content.field_title.0}}</h3>
{{content.field_description.0}}
</div>
</div>
\ No newline at end of file
<section id="portfolio" class="portfolio dt-section">
<div class="container">
<div class="title-1">
<h2>{{content.field_title.0}}</h2>
{{content.field_description.0}}
</div>
<div class="portfolio-images bg-image" style="background-image:url('{{file_url(content.field_image['#items'].entity.uri.value)}}')">
<div class="col-lg-7 col-12">
<div class="portfolio-slider owl-carousel owl-theme">
{{content.field_portfolio_images}}
</div>
<div class="arrows">
<button class="prev">
<span class="arrow-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="94" height="150" viewBox="0 0 94 150">
<path data-name="Path 40648" d="M94,13.409,79.662,0,0,75l79.743,75L94,136.591,28.514,75Z" fill="#181c31"/>
</svg>
</span>
</button>
<button class="next">
<span class="arrow-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="94" height="150" viewBox="0 0 94 150">
<path data-name="Path 40647" d="M0,13.409,14.338,0,94,75,14.257,150,0,136.591,65.486,75Z" fill="#181c31"/>
</svg>
</span>
</button>
</div>
</div>
</div>
</div>
</section>
\ No newline at end of file
<div class="row">
{% for key,value in content.field_images['#items'] %}
<div class="col-lg-4 col-md-6 col-12">
<a href="{{file_url(content.field_images['#items'][key].entity.uri.value)}}" title="Title">
<div data-aos="fade-up" data-aos-anchor-placement="bottom-bottom" class="image">
<img src="{{file_url(content.field_images['#items'][key].entity.uri.value)}}" alt="{{file_url(content.field_images['#items'][key].alt)}}">
<div class="overlay">
<h4>Title</h4>
</div>
</div>
</a>
</div>
{% endfor %}
</div>
\ No newline at end of file
<div data-aos="fade-up" data-aos-anchor-placement="bottom-bottom" class="col-lg-3">
<div class="item">
<div class="icon">
{{content.field_icon.0}}
</div>
{{content.field_description.0}}
</div>
</div>
\ No newline at end of file
<section id="service" class="services-section bg-image dt-section" style="background-image:url('{{file_url(content.field_image['#items'].entity.uri.value)}}')">
<div class="container">
<div data-aos="fade-up" data-aos-anchor-placement="bottom-bottom" class="title-1">
<h2>{{content.field_title.0}}</h2>
</div>
<div class="services">
<div class="row">
{{content.field_service}}
</div>
</div>
</div>
</section>
\ No newline at end of file
<div class="item">
<div class="row align-items-center s-25">
<div class="col-lg-6 col-12">
<h3 class="animate__animated animate__fadeInDown">{{content.field_title.0}}</h3>
<div class="animate__animated animate__fadeInDown">{{content.field_description.0}}</div>
</div>
<div class="col-lg-6 col-12 animate__animated animate__zoomIn">
<img src="{{file_url(content.field_image['#items'].entity.uri.value)}}" alt="{{file_url(content.field_image['#items'].alt)}}">
</div>
</div>
</div>
\ No newline at end of file