<!-- RP 240327 Detail page - Changed classes and removed style -->
<div class="n7-background-gray-02">
    <!-- RP 240327 Detail page - Changed classes -->
    <div class="container py-10 lg:py-12 md:pl-10 lg:pl-16 2xl:px-36 grid gap-6 n7-background-gray-02">
        <nav class="n7-breadcrumb " aria-label="Breadcrumb">
            <ol class="flex flex-wrap">

                <li>
                    <a class="inline-flex items-center p-1 text-xs n7-content-03 hover:underline" href="#">
                        Home

                        <svg class="inline-block align-middle fill-current w-4 h-4 text-neutral-400 ml-2" aria-hidden="true" focusable="false" role="img">
                            <use xlink:href="../../icons.svg#mini--chevron-right" />
                        </svg>

                    </a>
                </li>

                <li>
                    <a class="inline-flex items-center p-1 text-xs n7-content-03 hover:underline" href="#">
                        livello 1

                        <svg class="inline-block align-middle fill-current w-4 h-4 text-neutral-400 ml-2" aria-hidden="true" focusable="false" role="img">
                            <use xlink:href="../../icons.svg#mini--chevron-right" />
                        </svg>

                    </a>
                </li>

                <li>
                    <a class="inline-flex items-center p-1 text-xs n7-content-03 font-bold hover:underline" href="#" aria-current="page">
                        livello 2

                    </a>
                </li>

            </ol>
        </nav>

        <div class="flex flex-col lg:flex-row gap-x-12 gap-y-6">
            <div class="grid auto-rows-min gap-6">
                <h1 class="n7-heading-4 lg:n7-heading-3 n7-content-01">Antiseptics and the Ocular Surface: In Vitro Antimicrobial Activity and Effects on Conjunctival and Corneal Epithelial Cells of a New Liposomal Ocular Spray Containing Biosecur Citrus Extract</h1>

                <div>

                    <div class="flex gap-4 py-2 border-t-[1px] n7-border-gray-01">
                        <span class="text-sm n7-content-01 font-medium">AUTORI</span>
                        <span class="text-sm n7-content-02">Rita Mencucci - Emilia Ghelardi - Francesco Celandroni - Costanza Mazzantini - Alessandra Vecchione - Domenico Edoardo - Pellegrini Giampietro - Eleonora Favuzza - Elisa Landucci</span>
                    </div>

                    <!-- RP 240412 Detail page ricerca - Changed classes -->
                    <div class="flex gap-4 pt-2 border-t-[1px] n7-border-gray-01">
                        <span class="text-sm n7-content-01 font-medium min-w-[52px]">DATA</span>
                        <span class="text-sm n7-content-02">23 Febbraio 2022</span>
                    </div>

                </div>

            </div>
            <!-- RP 240327_02 Detail page - Changed classes -->
            <div class="shrink-0 grid gap-6 content-start justify-center max-lg:justify-items-center basis-[228px] mx-12">

                <!-- RP 240412 Detail page - Changed classes -->
                <img src="/images/vertical-thumb.png" alt="" class="sm:max-lg:max-w-[50%]" />

                <!-- RP 240412 Detail page - Changed classes -->
                <!-- RP 240412 Detail page prodotto - Two buttons and changed classes -->

                <a href="#" class="n7-btn 
    n7-btn--primary
    w-fit h-fit n7-btn--s">
                    Scarica PDF

                    <svg class="inline-block align-middle fill-current w-4 h-4 ml-2 transition-all duration-200 ease-out transform group-hover:translate-x-1" aria-hidden="true" focusable="false" role="img">
                        <use xlink:href="../../icons.svg#mini--arrow-up-tray" />
                    </svg>

                </a>

            </div>
        </div>
    </div>
</div>
<!-- RP 240327 Detail page - Changed classes and removed style -->
<div class="n7-background-gray-02">
<!-- RP 240327 Detail page - Changed classes -->
    <div class="container py-10 lg:py-12 md:pl-10 lg:pl-16 2xl:px-36 grid gap-6 {{ classes }}">
        {% render '@breadcrumb', {items: [{label : 'Home'}, { label : 'livello 1'}, { label : 'livello 2'}]}, true %}
        <div class="flex flex-col lg:flex-row gap-x-12 gap-y-6">
            <div class="grid auto-rows-min gap-6">
                <h1 class="n7-heading-4 lg:n7-heading-3 n7-content-01">{{ title }}</h1>
                {% if authors or publishingDate %}
                <div>
                    {% if authors %}
                    {% render '@authors', {label: authors.label, names: authors.names}, true %}
                    {% endif %}
                    {% if publishingDate %}
<!-- RP 240412 Detail page ricerca - Changed classes -->
                    <div class="flex gap-4 pt-2 border-t-[1px] n7-border-gray-01">
                        <span class="text-sm n7-content-01 font-medium min-w-[52px]">DATA</span>
                        <span class="text-sm n7-content-02">{{ publishingDate }}</span>
                    </div>
                    {% endif %}
                    {% if sourceLink %}
<!-- RP 240412 Detail page ricerca - New element -->
                    <div class="flex gap-4 pt-2">
                        <span class="text-sm n7-content-01 font-medium min-w-[52px]">LINK</span>
                        {% render '@link', {label: 'https://doi.org/10.1007/s40123-022-00492-0', href: 'https://doi.org/10.1007/s40123-022-00492-0', classes: 'text-sm'}, true %}
                    </div>
                    {% endif %}
                </div>
                {% endif %}
                {% if description %}<p class="text-lg lg:text-xl n7-content-01">{{description|safe}}</p>{% endif %}
            </div>
<!-- RP 240327_02 Detail page - Changed classes -->
            <div class="shrink-0 grid gap-6 content-start justify-center {{img.colWidth}}">
                {% if img %}
<!-- RP 240412 Detail page - Changed classes -->
                <img src="{{ img.path }}" alt="{{ img.alt }}" class="{{ img.classes }}" />
                {% endif %}
                {% if buttons %}
                    {% for button in buttons %}
<!-- RP 240412 Detail page - Changed classes -->
<!-- RP 240412 Detail page prodotto - Two buttons and changed classes -->
                {% render '@button--size-s', { href:'#', classes: button.classes, icon: button.icon, label: button.label} %} 
                    {% endfor %}                
                {% endif %}
            </div>
        </div>
    </div>
</div>
{
  "minisiteHidden": true,
  "classes": "n7-background-gray-02",
  "title": "Antiseptics and the Ocular Surface: In Vitro Antimicrobial Activity and Effects on Conjunctival and Corneal Epithelial Cells of a New Liposomal Ocular Spray Containing Biosecur Citrus Extract",
  "description": "",
  "authors": {
    "label": "AUTORI",
    "names": "Rita Mencucci - Emilia Ghelardi - Francesco Celandroni - Costanza Mazzantini - Alessandra Vecchione - Domenico Edoardo - Pellegrini Giampietro - Eleonora Favuzza - Elisa Landucci"
  },
  "publishingDate": "23 Febbraio 2022",
  "img": {
    "path": "/images/vertical-thumb.png",
    "alt": "",
    "classes": "sm:max-lg:max-w-[50%]",
    "colWidth": "max-lg:justify-items-center basis-[228px] mx-12"
  },
  "buttons": [
    {
      "label": "Scarica PDF",
      "icon": "mini--arrow-up-tray",
      "href": "url",
      "classes": "w-fit h-fit"
    }
  ]
}

No notes defined.