This commit is contained in:
Kevin Adametz 2024-08-05 12:05:24 +02:00
parent 04d677d37a
commit bfa3bb1df4
1191 changed files with 637397 additions and 10619 deletions

View file

@ -61,9 +61,9 @@
}
},
"content": {
"message": "{{__('This website uses cookies in order to guarantee the best possible service. With your visit to this site you agree to our use of cookies.') }}",
"message": "{{__('This website uses cookies') }}",
"dismiss": "{{__('OK')}}",
"link": "{{__('data protection')}}",
"link": "{{__('register.data_protection')}}",
"href": "{{ url('datenschutz') }}",
"target": "_blank",
}
@ -96,7 +96,7 @@
@endif
@if(isset($mylangs))
<div id="sidepanel" class="sidepanel-light">
<div id="sidepanel" class="sidepanel-light" data-init="{{ \Session::get('user_init_country_options') }}">
<a id="sidepanel_close" href="#"><!-- close -->
<i class="glyphicon glyphicon-remove"></i>
</a>
@ -105,19 +105,24 @@
@if (isset($mylangs[\App\Services\Shop::getUserShopLang()]))
@php($country = $mylangs[\App\Services\Shop::getUserShopLang()])
<h2 class="sidepanel-title">Du befindest dich im Shop: {{ $country->getLocated() }}</h2>
<h2 class="sidepanel-title">{{ __('website.you_are_now_in_shop') }} {{ $country->getLocated() }}</h2>
@endif
<p>Wichtiger Hinweis: Bestellungen im ausgewählten Land können nur innerhalb dieses Landes versandt werden.
Wenn du dein Land änderst, wirst du von deiner aktuellen Sitzung abgemeldet und dein Warenkorb wird geleert.
</p>
<p>{{ __('website.you_are_now_in_shop_notice') }} </p>
{!! Form::open(['url' => '/change_website_lang']) !!}
<label>Lieferland*</label>
<label>{{ __('Delivery country') }}*</label>
<select id="change_country_id" name="change_country_id" class="form-control pointer margin-bottom-20">
@foreach ($mylangs as $mycid => $mycountry)
<option value="{{ $mycid }}" @if($country->id === $mycountry->id) selected @endif>{{ $mycountry->getLocated() }}</option>
<option value="{{ $mycid }}" @if($country->id === $mycountry->id || \Session::get('_options') ===$mycid ) selected @endif>{{ $mycountry->getLocated() }}</option>
@endforeach
</select>
<button class="btn btn-primary btn-block" type="submit">Land wechseln</button>
<label>{{ __('website.language') }}*</label>
<select id="change_locale_id" name="change_locale_id" class="form-control pointer margin-bottom-20">
@foreach (\App\Services\UserService::getTransChange() as $code => $name)
<option value="{{ strtolower($code) }}" @if(\App::getLocale() === strtolower($code) || \Session::get('user_init_country_options') === strtolower($code) ) selected @endif>{{ $name }}</option>
@endforeach
</select>
<button class="btn btn-primary btn-block" type="submit">{{ __('website.change_country') }} </button>
{!! Form::close() !!}
</div>
</div>
@ -145,8 +150,6 @@
<script type="text/javascript" src="https://secure.pay1.de/client-api/js/v1/payone_hosted_min.js"></script>
<script>
$(document).ready(function() {
$('#cc_cardtype')
$('#cc_cardholder_first')
$('#cc_cardholder_last')

View file

@ -4,21 +4,21 @@
<div class="row">
<div class="col-12"><!-- left text -->
<p class="font-lato weight-300 size-20 nomargin-bottom">
Du möchtest Vertriebspartner werden oder hast Fragen zu unseren Produkten?
{{ __('website.sales_partner_or_questions') }}
</p>
@if(Util::isCheckout())
@if(isset($order_reference))
<h3>
<a href="{{ Util::getUserShopBackUrl($order_reference) }}" rel="nofollow" class="btn btn-primary btn-lg">zurück zum Shop</a>
<a href="{{ Util::getUserShopBackUrl($order_reference) }}" rel="nofollow" class="btn btn-primary btn-lg">{{ __('payment.back_to_shop') }}</a>
</h3>
@else
<h3>
Jetzt Kontakt aufnehmen: <a href="{{ Util::getUserCardBackUrl('/kontakt') }}" rel="nofollow" class="btn btn-primary btn-lg btn-text-500">zum Kontakt</a>
{{ __('website.contact_now') }} : <a href="{{ Util::getUserCardBackUrl('/kontakt') }}" rel="nofollow" class="btn btn-primary btn-lg btn-text-500">{{ __('website.to_contact') }}</a>
</h3>
@endif
@else
<h3>
Jetzt Kontakt aufnehmen: <a href="{{url('/kontakt')}}" rel="nofollow" class="btn btn-primary btn-lg btn-text-500">zum Kontakt</a>
{{ __('website.contact_now') }} : <a href="{{url('/kontakt')}}" rel="nofollow" class="btn btn-primary btn-lg btn-text-500">{{ __('website.to_contact') }}</a>
</h3>
@endif
</div><!-- /left text -->
@ -44,12 +44,12 @@
<ul class="list-unstyled">
@if($user_shop->title)
<li class="footer-sprite title">
<strong style="color: #97b085; font-size: 1.1em;">{{ $user_shop->title }}</strong>
<strong style="color: #97b085; font-size: 1.1em;">{{ $user_shop->title }}</strong>
</li>
@endif
@if($user_shop->contact)
@if($user_shop->getLang('contact'))
<li class="footer-sprite address">
{!! nl2br($user_shop->contact) !!}
{!! nl2br($user_shop->getLang('contact')) !!}
</li>
@endif
<li class="footer-sprite">
@ -65,41 +65,44 @@
<!-- Links -->
<h4 class="letter-spacing-1">&nbsp;</h4>
@if(isset($order_reference))
<a href="{{ Util::getUserShopBackUrl($order_reference) }}">
<i class="fa fa-chevron-left"></i> zurück zum Shop
</a>
@else
<a href="{{ Util::getUserCardBackUrl('/card/show') }}">
@if(Util::getUserPaymentFor() > 1)
<i class="fa fa-chevron-left"></i> zurück {{ Util::getMyMivitaUrl(false) }}
@else
<i class="fa fa-chevron-left"></i> zurück zum Warenkorb
@endif
</a>
@if(Util::getUserPaymentFor() != 6)
@if(isset($order_reference))
<a href="{{ Util::getUserShopBackUrl($order_reference) }}">
<i class="fa fa-chevron-left"></i> {{ __('payment.back_to_shop') }}
</a>
@else
<a href="{{ Util::getUserCardBackUrl('/card/show') }}">
@if(Util::getUserPaymentFor() > 1)
<i class="fa fa-chevron-left"></i> {{ __('back') }} {{ Util::getMyMivitaUrl(false) }}
@else
<i class="fa fa-chevron-left"></i> {{ __('payment.back_to_shop_shopping_cart') }}
@endif
</a>
@endif
@endif
<!-- /Links -->
</div>
@else
<div class="col-md-4">
<!-- Links -->
<h4 class="letter-spacing-1">Inhalte</h4>
<h4 class="letter-spacing-1">{{ __('website.contents') }}</h4>
<ul class="footer-links list-unstyled">
<li class="{{ Request::is('/') ? ' active' : '' }}"><a
href="{{ url('/') }}">Start</a></li>
href="{{ url('/') }}">{{ __('website.start') }}</a></li>
<li class="{{ Request::is('aloevera') ? ' active' : '' }}"><a
href="{{url('/aloevera')}}">Aloe Vera</a></li>
href="{{url('/aloevera')}}">{{ __('website.aloe_vera') }} </a></li>
<li class="{{ Request::is('produkte/*') ? ' active' : '' }}"><a
href="{{url('/produkte/alle-produkte')}}">Produktwelt</a></li>
href="{{url('/produkte/alle-produkte')}}">{{ __('website.productworld') }} </a></li>
<li class="{{ Request::is('geschaeftsmodell/*') ? ' active' : '' }}"><a
href="{{url('/geschaeftsmodell/karrierechancen')}}">Karrierechancen</a></li>
href="{{url('/geschaeftsmodell/karrierechancen')}}">{{ __('website.career_opportunities') }}</a></li>
<li class="{{ Request::is('kontakt') ? ' active' : '' }}"><a
href="{{url('/kontakt')}}">Kontakt</a></li>
href="{{url('/kontakt')}}">{{ __('website.contact') }}</a></li>
<li class="{{ Request::is('partner') ? ' active' : '' }}"><a
href="{{url('/partner')}}">Partner</a></li>
href="{{url('/partner')}}">{{ __('website.partner') }}</a></li>
@if($user_shop)
<li class="{{ Request::is('register_user') ? ' active' : '' }}"><a
href="{{url('/registrierung')}}">Registrierung</a></li>
href="{{url('/registrierung')}}">{{ __('website.register') }}</a></li>
@endif
</ul>
<!-- /Links -->
@ -111,7 +114,7 @@
@if(Yard::instance('shopping')->getShippingFree())
<div class="row mt-4 mb-0">
<div class="col-md-12 text-center">
<p class="alert alert-success">** Versandkostenfrei ab {{ formatNumber(Yard::instance('shopping')->getShippingFree()) }} &euro;. Ausgenommen sind große, sperrige Artikel oder Artikel die eine spezielle Verpackung benötigen.</p>
<p class="alert alert-success">{{ __('weborder.free_shipping_costs_from') }} {{ formatNumber(Yard::instance('shopping')->getShippingFree()) }} &euro;</p>
</div>
</div>
@endif
@ -121,25 +124,25 @@
<div class="copyright">
<div class="container">
<ul class="pull-right nomargin list-inline mobile-block">
<li>&copy; All Rights Reserved, mivita.care</li>
<li>&copy; {{ __('website.all_rights_reserved') }}</li>
<li>&bull;</li>
<li class="{{ Request::is('agb') ? ' active' : '' }}"><a
href="{{ url('/zahlungsarten') }}">Zahlungsarten</a></li>
href="{{ url('/zahlungsarten') }}">{{ __('website.payment_methods') }}</a></li>
<li>&bull;</li>
<li class="{{ Request::is('agb') ? ' active' : '' }}"><a
href="{{ url('/versandkosten') }}">Versandkosten</a></li>
href="{{ url('/versandkosten') }}">{{ __('website.shipping_costs') }}</a></li>
<li>&bull;</li>
<li class="{{ Request::is('agb') ? ' active' : '' }}"><a
href="{{ url('/agb') }}">AGB</a></li>
href="{{ url('/agb') }}">{{ __('website.gtc') }}</a></li>
<li>&bull;</li>
<li class=""><a target="_blank"
href="{{ asset('download/mivita_widerruf_formular.pdf') }}">Widerrufsbelehrung</a></li>
href="{{ asset('download/mivita_widerruf_formular.pdf') }}">{{ __('website.cancellation_policy') }}</a></li>
<li>&bull;</li>
<li class="{{ Request::is('datenschutz') ? ' active' : '' }}"><a
href="{{ url('/datenschutz') }}">Datenschutzerklärung</a></li>
href="{{ url('/datenschutz') }}">{{ __('website.privacy_policy') }}</a></li>
<li>&bull;</li>
<li class="{{ Request::is('impressum') ? ' active' : '' }} "><a
href="{{ url('/impressum') }}">Impressum</a></li>
href="{{ url('/impressum') }}">{{ __('website.impress') }}</a></li>
</ul>
</div>

View file

@ -1,5 +1,4 @@
<div id="header" class="sticky clearfix">
<style>
#header li.quick-cart .quick-cart-box {
-webkit-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.3);
@ -53,8 +52,11 @@
#topBar ul.top-links > li > a {
display: inline-block;
}
#topBar ul.top-links > li a.active {
background-color: #b5c49b;
}
</style>
@if(isset($mylangs))
<style>
@media only screen and (max-width: 992px) {
/* Force 60px */
@ -63,18 +65,35 @@
}
}
</style>
@if(isset($mylangs))
<div id="topBar">
<div class="container">
<ul class="top-links list-inline pull-right">
<li>
@if (isset($mylangs[\App\Services\Shop::getUserShopLang()]))
@php($country = $mylangs[\App\Services\Shop::getUserShopLang()])
<span>Lieferland:</span> <a id="sidepanel_btn" href="#" class="no-text-underline"><img class="flag-lang" src="/images/flags/{{ strtolower($country->code) }}.png" width="16" height="11" alt="lang" /> {{ $country->getLocated() }}</a>
<span>{{ __('Delivery country') }}:</span> <a id="sidepanel_btn" href="#" class="no-text-underline"><img class="flag-lang" src="/images/flags/{{ strtolower($country->code) }}.svg" width="16" height="11" alt="lang" /> {{ $country->getLocated() }}</a>
@endif
</li>
<li>
<a class="dropdown-toggle no-text-underline" data-toggle="dropdown" href="#"><span style="text-transform:none;">
{{ __('website.language') }} :</span> <img style="height: 16px" width="16" src="{{ asset('images/flags/'.strtolower(\App::getLocale()).'.svg') }}" alt="lang">
</a>
<ul class="dropdown-menu pull-right">
@foreach (\App\Services\UserService::getTransChange() as $code => $name)
<li>
<a @if(\App::getLocale() === $code) class="active" @endif tabindex="-1" href="{{ route('translation', [$code]) }}">
<img style="height: 16px" width="16" src="{{ asset('images/flags/'.strtolower($code).'.svg') }}" alt="lang"> &nbsp; <span style="text-transform:none;">{{ $name }}</span>
</a>
</li>
@endforeach
</ul>
</li>
{{-- <li class="text-welcome hidden-xs">Welcome to Smarty, <strong>John Doe</strong></li>
{{--
<li class="text-welcome hidden-xs">Welcome to Smarty, <strong>John Doe</strong></li>
<li>
<a class="dropdown-toggle no-text-underline" data-toggle="dropdown" href="#"><i class="fa fa-user hidden-xs"></i> MY ACCOUNT</a>
<ul class="dropdown-menu pull-right">
@ -92,6 +111,7 @@
</div>
@endif
<header id="topNav">
<div class="container">
@ -117,18 +137,20 @@
<nav class="nav-main">
<ul id="topMain" class="nav nav-pills nav-main nav-onepage">
<li class="">
@if(isset($order_reference))
<a href="{{ Util::getUserShopBackUrl($order_reference) }}">
<i class="fa fa-chevron-left"></i> zurück zum Shop
</a>
@else
<a href="{{ Util::getUserCardBackUrl('/card/show') }}">
@if(Util::getUserPaymentFor() > 1)
<i class="fa fa-chevron-left"></i> zurück {{ Util::getMyMivitaUrl(false) }}
@else
<i class="fa fa-chevron-left"></i> zurück zum Warenkorb
@endif
</a>
@if(Util::getUserPaymentFor() != 6)
@if(isset($order_reference))
<a href="{{ Util::getUserShopBackUrl($order_reference) }}">
<i class="fa fa-chevron-left"></i> {{ __('payment.back_to_shop') }}
</a>
@else
<a href="{{ Util::getUserCardBackUrl('/card/show') }}">
@if(Util::getUserPaymentFor() > 1)
<i class="fa fa-chevron-left"></i> {{ __('back') }} {{ Util::getMyMivitaUrl(false) }}
@else
<i class="fa fa-chevron-left"></i> {{ __('payment.back_to_shop_shopping_cart') }}
@endif
</a>
@endif
@endif
</li>
</ul>
@ -150,7 +172,7 @@
@endif
</a>
<div class="quick-cart-box" style="display: @if(Session::has('show-card-after-add')) block @else none @endif">
<h4>Warenkorb</h4>
<h4>{{ __('weborder.shopping_cart') }} </h4>
<div class="quick-cart-wrapper">
@foreach(Yard::instance('shopping')->content() as $row)
@ -169,20 +191,26 @@
<!-- quick cart footer -->
<div class="quick-cart-footer clearfix">
<div class="text-left">
<strong>Zwischensumme:</strong> <strong class="pull-right">{{ Yard::instance('shopping')->total() }} </strong>
<strong>{{ __('order.subtotal') }}:</strong> <strong class="pull-right">{{ Yard::instance('shopping')->total() }} </strong>
<br>
@if(Yard::instance('shopping')->getUserTaxFree())
<em style="font-size: 0.9em">exkl. MwSt. zzgl. Versandkosten</em>
<em style="font-size: 0.9em">{{ __('weborder.excl_VAT_plus_shipping_costs') }} </em>
@else
<em style="font-size: 0.9em">inkl. MwSt. zzgl. Versandkosten</em>
<em style="font-size: 0.9em">{{ __('weborder.incl_VAT_plus_shipping_costs') }} </em>
@endif
@if(Yard::instance('shopping')->getShippingFree())
<em style="font-size: 0.9em"><br>Versandkostenfrei ab {{ formatNumber(Yard::instance('shopping')->getShippingFree()) }} &euro;**</em>
<em style="font-size: 0.9em"><br>{{ __('weborder.free_shipping_costs_from') }} {{ formatNumber(Yard::instance('shopping')->getShippingFree()) }}
@if(Yard::instance('shopping')->getShippingFreeMissingValue() > 0)
<br>{!! __('weborder.only_missing_free_shipping_costs_from', ['value'=> formatNumber(Yard::instance('shopping')->getShippingFreeMissingValue())]) !!}
@else
<br><i class="fa fa-check"></i> {{ __('weborder.free_shipping_costs_from') }}
@endif
</em>
@endif
</div>
<a href="{{ url(Util::getPostRoute().'card/show') }}" class="btn btn-primary btn-text-500 btn-block mt-3 faa-parent animated-hover">zum Warenkorb <i class="fa fa-shopping-cart faa-horizontal"></i></a>
<a href="{{ url(Util::getPostRoute().'card/show') }}" class="btn btn-primary btn-text-500 btn-block mt-3 faa-parent animated-hover">{{ __('weborder.to_shopping_cart') }} <i class="fa fa-shopping-cart faa-horizontal"></i></a>
<a href="#" class="btn btn-sm btn-default mt-3 quick-cart-box-close">schließen</a>
<a href="#" class="btn btn-sm btn-default mt-3 quick-cart-box-close">{{ __('close') }}</a>
</div>
</div>
@ -198,27 +226,27 @@
<ul id="topMain" class="nav nav-pills nav-main nav-onepage">
<li class="{{ Request::is('/') ? ' active' : '' }}">
<a href="/">
Start
{{ __('website.start') }}
</a>
</li>
<li class="{{ Request::is('aloevera') ? ' active' : '' }}">
<a href="{{url('/aloevera')}}">
Aloe Vera
{{ __('website.aloe_vera') }}
</a>
</li>
<li class="{{ Request::is('produkte/*') ? ' active' : '' }}">
<a href="{{url('/produkte/alle-produkte')}}/">
Produktwelt
{{ __('website.productworld') }}
</a>
</li>
<li class="{{ Request::is('geschaeftsmodell/*') ? ' active' : '' }}">
<a href="{{url('/geschaeftsmodell/karrierechancen')}} ">
Karrierechancen
{{ __('website.career_opportunities') }}
</a>
</li>
<li class="{{ Request::is('kontakt') ? ' active' : '' }}">
<a href="{{ url('kontakt') }}">
Kontakt
{{ __('website.contact') }}
</a>
</li>
</ul>

View file

@ -6,4 +6,6 @@
@yield('content')
@include('web.user.layouts.includes.footer')
</div>
@endsection

View file

@ -74,7 +74,7 @@
data-endelementdelay="0.1"
data-endspeed="1000"
data-endeasing="Power4.easeIn" style="z-index: 10;">
<span class="h1">Bio Aloe Vera &amp; Naturkosmetik</span>
<span class="h1">{!! __('website.slider_subl') !!}</span>
</div>
<div class="tp-caption customin ltl tp-resizeme large_bold_white"
@ -90,7 +90,7 @@
data-endelementdelay="0.1"
data-endspeed="1000"
data-endeasing="Power4.easeIn" style="z-index: 10;">
<span class="weight-400">Nahrungsergänzung</span>
<span class="weight-400">{!! __('website.slider_hl') !!}</span>
</div>
</li>
</ul>
@ -106,8 +106,8 @@
<div class="row">
<div class="col-md-9">
<h1>{{$site->headline}}</h1>
<p class="margin-bottom-20">{{$site->copy}}</p>
<h1>{{ __('website.productworld') }} {{-- $site->headline --}}</h1>
<p class="margin-bottom-20">{!! __('website.start_copy_mivita') !!} {{-- $site->copy --}}</p>
@if($site->hasImage())
<img class="img-responsive margin-bottom-20" src="{{ route('iq_image', [$site->iq_image->slug]) }}" alt="">
@ -123,7 +123,7 @@
@endforeach
</ul>
<div class="text-center">
<a href="{{url('/produkte')}}" class="btn btn-lg btn-primary ">Alle Produkte anzeigen</a>
<a href="{{url('/produkte')}}" class="btn btn-lg btn-primary ">{{ __('website.show_all_products') }} </a>
</div>
@ -153,8 +153,8 @@
<div class="col-md-3" style="border-left: 1px solid #ddd;">
<h2 class="text-center">Willkommen</h2>
<p class="text-center">Ich freue mich über Deinen Besuch in meinem MIVITA Onlineshop. Ich bin Deine persönliche Beratung rund um die Produkte und ihrer Anwendung.</p>
<h2 class="text-center">{!! __('website.welcome') !!}</h2>
<p class="text-center">{!! __('website.welcome_copy') !!}</p>
<div class="text-center">
@if($user_shop->isImage())
<img class="img-responsive rounded avatar" src="{{ url($user_shop->getImage()) }}" alt="">
@ -167,28 +167,28 @@
@if($user_shop->title)
<strong style="color: #97b085; font-size: 1.1em;">{{ $user_shop->title }}</strong><br>
@endif
@if($user_shop->contact)
{!! nl2br($user_shop->contact) !!}
@if($user_shop->getLang('contact'))
{!! nl2br($user_shop->getLang('contact')) !!}
@endif
<br>
{{ $user_shop->getSubdomain(true) }}
</p>
@if($user_shop->accessibility)
@if($user_shop->getLang('accessibility'))
<p class="text-center">
<strong>Meine Erreichbarkeit:</strong><br>
{!! nl2br($user_shop->accessibility) !!}
<strong>{!! __('website.my_accessibility') !!} :</strong><br>
{!! nl2br($user_shop->getLang('accessibility')) !!}
</p>
@endif
@if($user_shop->about)
@if($user_shop->getLang('about'))
<div class="divider divider-center divider-color" style="margin: 10px 0;"><!-- divider -->
<i class="fa fa-chevron-down"></i>
</div>
<p class="text-center" style="color: #97b085;">
<em>
{{ $user_shop->about }}
{{ nl2br($user_shop->getLang('about'))}}
</em>
</p>
@endif
@ -197,8 +197,8 @@
<div class="divider divider-center divider-color" style="margin: 10px 0;"><!-- divider -->
<i class="fa fa-chevron-down"></i>
</div>
<h3 class="text-center">Für Dich vor Ort:</h3>
<p class="text-center">Wir waren für Dich vor Ort auf der Aloe Vera Farm auf Mallorca, denn Transparenz ist uns wichtig. So weißt Du genau, wo Deine Produkte herkommen und wie sie produziert werden. Echte Qualität eben.</p>
<h3 class="text-center">{!! __('website.for_you_on_spot') !!}:</h3>
<p class="text-center">{!! __('website.for_you_on_spot_copy') !!}</p>
<div class="clearfix lightbox" data-img-big="1" data-plugin-options='{"delegate": "a", "gallery": {"enabled": true}}'>
@foreach($user_shop->on_sites as $image)
@ -242,16 +242,8 @@
<!-- /OWL SLIDER -->
</div>
<div class="col-md-6">
<h2>Warum MIVITA?</h2>
<p>Unsere Kunden vertrauen zurecht auf die exzellenten Eigenschaften der MIVITA Produkte. Damit trifft
jeder aktiv eine kluge Entscheidung für Gesundheit und Umwelt.</p>
<p>Wir legen nicht nur auf die Qualität unserer Produkte einen hohen Stellenwert, sondern natürlich auch
auf umfassende, kompetente Beratung durch freundliche und fachkundige Berater und Beraterinnen.</p>
<p>Wir entwickeln und vertreiben ausschließlich Produkte, die qualitativ hochwertig sind. So sind sie
bei sachgemäßer Anwendung und Pflege langlebig und sehr ergiebig. Faktoren, die uns die
Zufriedenheit unserer Kunden sichern.</p>
<h2>{!! __('website.start_why_hl') !!} </h2>
{!! __('website.start_why_copy') !!}
</div>
</article>
@ -270,17 +262,17 @@
<div class="row">
<div class="col-md-4 col-xs-6">
<div class="text-center">
<h3 class="h3">Aloe Vera</h3>
<p class="">Mit höchstem Anspruch arbeiten wir gemeinsam mit der Aloe Vera Farm auf Mallorca
zusammen, die weltweite Qualität der Spitzenklasse garantiert.</p>
<h3 class="h3">{{ __('website.start_aloe_hl') }} </h3>
<p class="">{{ __('website.start_aloe_copy') }} </p>
<a href="/aloevera">
Mehr
{{ __('website.more') }}
<!-- /word rotator -->
<span class="word-rotator" data-delay="2000">
<span class="items">
<span>lesen</span>
<span>JETZT</span>
<span> {{ __('website.read') }} </span>
<span> {{ __('website.NOW') }} </span>
</span>
</span><!-- /word rotator -->
<i class="glyphicon glyphicon-menu-right size-12"></i>
@ -290,17 +282,16 @@
</div>
<div class="col-md-4 col-xs-6">
<div class="text-center">
<h3 class="h3">Produkte</h3>
<p class="">Hier findest Du einen Überblick über das komplette Premium-Produktsortiment von MIVITA.
Vom hochwertigen Aloe Saft bis zu wohltuender Kosmetik.</p>
<h3 class="h3">{{ __('website.start_products_hl') }} </h3>
<p class="">{{ __('website.start_products_copy') }} </p>
<a href="/produkte">
Mehr
{{ __('website.more') }}
<!-- /word rotator -->
<span class="word-rotator" data-delay="2000">
<span class="items">
<span>lesen</span>
<span>JETZT</span>
<span> {{ __('website.read') }} </span>
<span> {{ __('website.NOW') }} </span>
</span>
</span><!-- /word rotator -->
<i class="glyphicon glyphicon-menu-right size-12"></i>
@ -310,17 +301,16 @@
</div>
<div class="col-md-4 col-xs-6">
<div class="text-center">
<h3 class="h3">Vertriebspartner</h3>
<p class="">Werde auch Du ein Vertriebspartner von MIVITA und baue Dir Dein eigenes Geschäft mit
Qualitätsprodukten auf. Wenn Du magst, kannst Du sofort starten ...</p>
<h3 class="h3">{{ __('website.start_salespartner_hl') }} </h3>
<p class="">{{ __('website.start_salespartner_copy') }} </p>
<a href="/geschaeftsmodell/karrierechancen">
Mehr
{{ __('website.more') }}
<!-- /word rotator -->
<span class="word-rotator" data-delay="2000">
<span class="items">
<span>lesen</span>
<span>JETZT</span>
<span> {{ __('website.read') }} </span>
<span> {{ __('website.NOW') }} </span>
</span>
</span><!-- /word rotator -->
<i class="glyphicon glyphicon-menu-right size-12"></i>
@ -336,25 +326,12 @@
</section>
<!-- / -->
<!-- -->
<section>
<div class="container">
<div class="row">
<div class="col-lg-6">
<p>MIVITA ist exklusiver Partner der Farm Aloe Vera de Mallorca im Bereich Direktvertrieb Deutschland.
Hier haben zwei Unternehmen zusammengefunden, für die Qualität und Nachhaltigkeit oberstes Gebot
sind. Nur so lassen sich langfristig zufriedene Kunden zu echten Fans unserer Produkte gewinnen.</p>
<blockquote>
<p><i>„Mensch, Tier und Natur zuliebe ... Nachhaltigkeit und Produkte, die wirklich „guttun“, sind
uns wichtig.</i></p>
<p>Alois Ried - Inhaber MIVITA</p>
</blockquote>
{!! __('website.start_mivitapartner_copy') !!}
</div>
<div class="col-lg-6" id="youtube-ChHAxy6SbkM">
@if(Request::get('youtube') === 'ChHAxy6SbkM')
<div class="embed-responsive embed-responsive-16by9 box-shadow-1">
@ -362,9 +339,9 @@
</div>
@else
<div class="text-center">
<h4 class="mb-2"> Mit dem Laden des Youtube-Video akzeptieren Sie unsere Datenschutzerklärung / XII. Einbindung von Diensten und Inhalten Dritter </h4>
<a class="text-link" href="{{ url('/datenschutz') }}">zur Datenschutzerklärung</a><br>
<a class="btn btn-primary" href="{{ url('/') }}?youtube=ChHAxy6SbkM#youtube-ChHAxy6SbkM" rel="nofollow">akzeptieren und Youtube-Video laden</a>
<h4 class="mb-2">{{ __('website.youtube_accepted_copy') }} </h4>
<a class="text-link" href="{{ url('/datenschutz') }}">{{ __('website.to_privacy_policy') }} </a><br>
<a class="btn btn-primary" href="{{ url('/') }}?youtube=ChHAxy6SbkM#youtube-ChHAxy6SbkM" rel="nofollow">{{ __('website.accept_youtube_load') }} n</a>
</div>
<br>
<div class="embed-responsive embed-responsive-16by9 box-shadow-1">
@ -372,13 +349,9 @@
</div>
@endif
</div>
</div>
</div>
</section>
<!-- / -->