@extends('layouts.app') @section('content') @if (!have_posts())

{!! __('Non abbiamo trovato il contenuto che cercavi', 'alpina') !!}

{!! __('Torna alla Home e continua la tua navigazione', 'alpina') !!}:

@include('components.btn', [ 'link' => [ 'title' => 'Home', 'url' => get_site_url(), ], 'type' => 'fill', 'has_arrow' => true, ])

{!! __('Consulta i nostri cataloghi', 'alpina') !!}:

@if($spokes = get_term($acf_options['spokes_taxonomy'])) @include('components.btn', [ 'link' => [ 'title' => $spokes->name, 'url' => get_term_link($spokes), ], 'type' => 'fill', 'has_arrow' => true, ]) @endif @if($nipples = get_term($acf_options['nipples_taxonomy'])) @include('components.btn', [ 'link' => [ 'title' => $nipples->name, 'url' => get_term_link($nipples), ], 'type' => 'fill', 'has_arrow' => true, ]) @endif

{!! __('Visita il nostro shop', 'alpina') !!}:

@if($wheels = get_term($acf_options['wheels_taxonomy'])) @include('components.btn', [ 'link' => [ 'title' => $wheels->name, 'url' => get_term_link($wheels), ], 'type' => 'fill', 'has_arrow' => true, ]) @endif
@if($acf_options['contact_page_link'] || $acf_options['faq_page_link'])
{!! __('Hai bisogno di ulteriori informazioni?', 'alpina') !!}
@include('components.btn', [ 'link' => $acf_options['faq_page_link'], 'type' => 'fill', 'has_arrow' => true, ]) @include('components.btn', [ 'link' => $acf_options['contact_page_link'], 'type' => 'fill', 'has_arrow' => true, ])
@endif @endif @endsection