first commit
This commit is contained in:
commit
0baac018a2
1011 changed files with 145854 additions and 0 deletions
148
resources/views/_bak/web/user/layouts/application.blade.php
Normal file
148
resources/views/_bak/web/user/layouts/application.blade.php
Normal file
|
|
@ -0,0 +1,148 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>@if($user_shop->title) {{ $user_shop->title }}@endif | mivita care</title>
|
||||
<meta name="description" content="" />
|
||||
<meta name="Author" content="" />
|
||||
|
||||
<!-- mobile settings -->
|
||||
<meta name="viewport" content="width=device-width, maximum-scale=1, initial-scale=1, user-scalable=0" />
|
||||
<!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'><![endif]-->
|
||||
|
||||
<!-- WEB FONTS : use %7C instead of | (pipe) -->
|
||||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600%7CRaleway:300,400,500,600,700%7CLato:300,400,400italic,600,700" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!-- CORE CSS -->
|
||||
|
||||
<!-- REVOLUTION SLIDER -->
|
||||
<link href="{{ asset('/assets/plugins/slider.revolution/css/extralayers.css') }}" rel="stylesheet" type="text/css" />
|
||||
<link href="{{ asset('/assets/plugins/slider.revolution/css/settings.css') }}" rel="stylesheet" type="text/css" />
|
||||
<link href="{{ asset('/assets/css/mystyle.css') }}" rel="stylesheet" type="text/css" />
|
||||
<link href="{{ asset('/assets/css/custom-style.css?v1') }}" rel="stylesheet" type="text/css" />
|
||||
<link href="{{ asset('assets/css/custom-forms-v2.css') }}" rel="stylesheet" type="text/css" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="{{ asset('/css/cookieconsent.min.css') }}" />
|
||||
<script src="{{ asset('/js/cookieconsent.min.js') }}"></script>
|
||||
<script>
|
||||
window.addEventListener("load", function(){
|
||||
window.cookieconsent.initialise({
|
||||
"palette": {
|
||||
"popup": {
|
||||
"background": "#b5c49b",
|
||||
"text": "#ffffff"
|
||||
},
|
||||
"button": {
|
||||
"background": "#d7d700",
|
||||
"text": "#ffffff"
|
||||
}
|
||||
},
|
||||
"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.') }}",
|
||||
"dismiss": "{{__('OK')}}",
|
||||
"link": "{{__('data protection')}}",
|
||||
"href": "{{ url('datenschutz') }}",
|
||||
"target": "_blank",
|
||||
}
|
||||
})});
|
||||
</script>
|
||||
|
||||
|
||||
<style type="text/css">
|
||||
|
||||
.text-primary {
|
||||
color:#a5d0a5 !important;
|
||||
}
|
||||
div.side-nav ul.list-group-bordered > li.list-group-item.active > a:hover{
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body class="smoothscroll enable-animation">
|
||||
|
||||
@yield('layout-content')
|
||||
|
||||
<!-- SCROLL TO TOP -->
|
||||
<a href="#" id="toTop"></a>
|
||||
|
||||
<!-- JAVASCRIPT FILES -->
|
||||
<script type="text/javascript">var plugin_path = "{{ url('/assets/plugins/').'/' }}"</script>
|
||||
<script type="text/javascript" src="{{ asset('/assets/plugins/jquery/jquery-2.2.3.min.js') }}"></script>
|
||||
<script type="text/javascript" src="{{ asset('/assets/js/scripts.js') }}"></script>
|
||||
{{-- <script type="text/javascript" src="{{ asset('/assets/js/jquery.contact-form.js') }}"></script> --}}
|
||||
<!-- REVOLUTION SLIDER -->
|
||||
<script type="text/javascript" src="{{ asset('/assets/plugins/slider.revolution/js/jquery.themepunch.tools.min.js') }}"></script>
|
||||
<script type="text/javascript" src="{{ asset('/assets/plugins/slider.revolution/js/jquery.themepunch.revolution.min.js') }}"></script>
|
||||
<script type="text/javascript" src="{{ asset('/assets/js/view/demo.revolution_slider.js') }}"></script>
|
||||
@yield('scripts')
|
||||
|
||||
|
||||
|
||||
{{--
|
||||
<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')
|
||||
$('#cc_cardpan')
|
||||
var data = {
|
||||
request : 'creditcardcheck',
|
||||
responsetype : 'REDIRECT', // JSON or REDIRECT available
|
||||
mode : 'live',
|
||||
mid : '10000',
|
||||
aid : '10001',
|
||||
portalid : '2000000',
|
||||
encoding : 'UTF-8',
|
||||
storecarddata : 'yes',
|
||||
hash : '19062005567ca72601cc9d031f9a94b1',
|
||||
cardholder : document.Testform.cardholder.value,
|
||||
cardpan : document.Testform.cardpan.value,
|
||||
cardtype : document.Testform.cardtype.value,
|
||||
cardexpiremonth : document.Testform.cardexpiremonth.value,
|
||||
cardexpireyear : document.Testform.cardexpireyear.value,
|
||||
cardcvc2 : document.Testform.cardcvc2.value,
|
||||
language : 'en'
|
||||
};
|
||||
var options = {
|
||||
return_type : 'object',
|
||||
callbackFunctionName: 'processPayoneResponse'
|
||||
};
|
||||
function processPayoneResponse(response) {
|
||||
if (response.get('status') == 'VALID') {
|
||||
document.Testform.cardpan.value=’’;
|
||||
document.Testform.cardcvc2.value=’’;
|
||||
document.Testform.pseudocardpan.value=response.get('pseudocardpan')
|
||||
document.Testform.submit();
|
||||
}
|
||||
else {
|
||||
alert(response.get('customermessage'));
|
||||
}
|
||||
}
|
||||
var request = new PayoneRequest(data, options);
|
||||
request.checkAndStore();
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
/* JSON response example
|
||||
{
|
||||
"status" : "ERROR",
|
||||
"errorcode" : "1078",
|
||||
"errormessage" : "Parameter {cardpan} incorrect or missing",
|
||||
"customermessage" : "Invalid cardpan. Please check the information on the card.",
|
||||
}
|
||||
|
||||
*/
|
||||
|
||||
</script>
|
||||
--}}
|
||||
|
||||
</body>
|
||||
</html>
|
||||
135
resources/views/_bak/web/user/layouts/includes/footer.blade.php
Normal file
135
resources/views/_bak/web/user/layouts/includes/footer.blade.php
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
|
||||
<div class="alert alert-success bordered-bottom nomargin">
|
||||
<div class="container">
|
||||
<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?
|
||||
</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>
|
||||
</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>
|
||||
</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>
|
||||
</h3>
|
||||
@endif
|
||||
</div><!-- /left text -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /CALLOUT -->
|
||||
|
||||
<!-- FOOTER -->
|
||||
<footer id="footer">
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<!-- Footer Logo -->
|
||||
<img class="footer-logo" src="{{asset('/assets/images/logo_dark.png')}}" alt=""/>
|
||||
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<!-- Contact Address -->
|
||||
<br>
|
||||
<address>
|
||||
<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>
|
||||
</li>
|
||||
@endif
|
||||
@if($user_shop->contact)
|
||||
<li class="footer-sprite address">
|
||||
{!! nl2br($user_shop->contact) !!}
|
||||
</li>
|
||||
@endif
|
||||
<li class="footer-sprite">
|
||||
{{ $user_shop->getSubdomain(true) }}
|
||||
</li>
|
||||
</ul>
|
||||
</address>
|
||||
<!-- /Contact Address -->
|
||||
</div>
|
||||
|
||||
@if(Util::isCheckout())
|
||||
<div class="col-md-4">
|
||||
<!-- Links -->
|
||||
<h4 class="letter-spacing-1"> </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>
|
||||
@endif
|
||||
<!-- /Links -->
|
||||
</div>
|
||||
@else
|
||||
<div class="col-md-4">
|
||||
<!-- Links -->
|
||||
<h4 class="letter-spacing-1">Inhalte</h4>
|
||||
<ul class="footer-links list-unstyled">
|
||||
<li class="{{ Request::is('/') ? ' active' : '' }}"><a
|
||||
href="{{ url('/') }}">Start</a></li>
|
||||
<li class="{{ Request::is('aloevera') ? ' active' : '' }}"><a
|
||||
href="{{url('/aloevera')}}">Aloe Vera</a></li>
|
||||
<li class="{{ Request::is('produkte/*') ? ' active' : '' }}"><a
|
||||
href="{{url('/produkte/alle-produkte')}}">Produktwelt</a></li>
|
||||
<li class="{{ Request::is('geschaeftsmodell/*') ? ' active' : '' }}"><a
|
||||
href="{{url('/geschaeftsmodell/karrierechancen')}}">Karrierechancen</a></li>
|
||||
<li class="{{ Request::is('kontakt') ? ' active' : '' }}"><a
|
||||
href="{{url('/kontakt')}}">Kontakt</a></li>
|
||||
<li class="{{ Request::is('partner') ? ' active' : '' }}"><a
|
||||
href="{{url('/partner')}}">Partner</a></li>
|
||||
@if($user_shop)
|
||||
<li class="{{ Request::is('register_user') ? ' active' : '' }}"><a
|
||||
href="{{url('/registrierung')}}">Registrierung</a></li>
|
||||
@endif
|
||||
</ul>
|
||||
<!-- /Links -->
|
||||
</div>
|
||||
|
||||
@endif
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="copyright">
|
||||
<div class="container">
|
||||
|
||||
<ul class="pull-right nomargin list-inline mobile-block">
|
||||
|
||||
<li class="{{ Request::is('agb') ? ' active' : '' }}"><a
|
||||
href="{{ url('/agb') }}">AGB</a></li>
|
||||
<li>•</li>
|
||||
<li class=""><a target="_blank"
|
||||
href="{{ asset('download/mivita_widerruf_formular.pdf') }}">Widerrufsbelehrung</a></li>
|
||||
<li>•</li>
|
||||
|
||||
<li class="{{ Request::is('datenschutz') ? ' active' : '' }}"><a
|
||||
href="{{ url('/datenschutz') }}">Datenschutzerklärung</a></li>
|
||||
<li>•</li>
|
||||
<li class="{{ Request::is('impressum') ? ' active' : '' }} "><a
|
||||
href="{{ url('/impressum') }}">Impressum</a></li>
|
||||
</ul>
|
||||
© All Rights Reserved, mivita.care
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<!-- /FOOTER -->
|
||||
183
resources/views/_bak/web/user/layouts/includes/header.blade.php
Normal file
183
resources/views/_bak/web/user/layouts/includes/header.blade.php
Normal file
|
|
@ -0,0 +1,183 @@
|
|||
<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);
|
||||
-moz-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.3);
|
||||
box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.3);
|
||||
}
|
||||
#header li.quick-cart .quick-cart-footer > span {
|
||||
background-color: transparent;
|
||||
}
|
||||
.quick-cart-wrapper span.price {
|
||||
color: #666666;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
.quick-cart-wrapper h5 {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
#header li.quick-cart .quick-cart-footer {
|
||||
padding: 10px 10px 10px 10px;
|
||||
background-color: #ebebeb;
|
||||
}
|
||||
#header li.quick-cart .quick-cart-box {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
#header ul.nav-second-main {
|
||||
margin-top: 25px;
|
||||
}
|
||||
@media only screen and (max-width: 992px){
|
||||
|
||||
#header ul.nav-second-main
|
||||
{
|
||||
margin-top: 0px;
|
||||
}
|
||||
}
|
||||
#header.fixed ul.nav-second-main {
|
||||
margin-top: 8px;
|
||||
}
|
||||
#header li.quick-cart .quick-cart-box a.btn-sm{
|
||||
padding: 8px !important;
|
||||
font-size: 13px;
|
||||
line-height: 1.2em;
|
||||
|
||||
}
|
||||
#header li.quick-cart .quick-cart-box a.btn-default{
|
||||
background-color: transparent;
|
||||
border: #b0adb3 1px solid;
|
||||
}
|
||||
|
||||
</style>
|
||||
<!-- TOP NAV -->
|
||||
<header id="topNav">
|
||||
<div class="container">
|
||||
|
||||
<!-- Mobile Menu Button -->
|
||||
<button class="btn btn-mobile" data-toggle="collapse" data-target=".nav-main-collapse">
|
||||
<i class="fa fa-bars"></i>
|
||||
</button>
|
||||
|
||||
@if(Util::isCheckout())
|
||||
|
||||
@if(isset($order_reference))
|
||||
<a class="logo pull-left" href="{{ Util::getUserShopBackUrl($order_reference) }}">
|
||||
<img class="fixed_top" src="/assets/images/logo_mivita.png" alt="mivita" />
|
||||
<img class="fixed_scroll" src="/assets/images/logo_mivita_fixed.png" alt="mivita" />
|
||||
</a>
|
||||
@else
|
||||
<a class="logo pull-left" href="{{ Util::getUserCardBackUrl('/') }}">
|
||||
<img class="fixed_top" src="/assets/images/logo_mivita.png" alt="mivita" />
|
||||
<img class="fixed_scroll" src="/assets/images/logo_mivita_fixed.png" alt="mivita" />
|
||||
</a>
|
||||
@endif
|
||||
<div class="navbar-collapse pull-right nav-main-collapse collapse">
|
||||
<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>
|
||||
@endif
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
@else
|
||||
<ul class="pull-right nav nav-pills nav-second-main has-topBar">
|
||||
<!-- QUICK SHOP CART -->
|
||||
<li class="quick-cart">
|
||||
|
||||
<a href="#" style="border: 1px solid #c3c3c3; padding: 10px;">
|
||||
<span style="position: relative">
|
||||
<span class="badge badge-success btn-xs badge-corner faa-horizontal animated">{{ Yard::instance('shopping')->count() }}</span>
|
||||
<i class="fa fa-shopping-cart"></i>
|
||||
</span>
|
||||
|
||||
@if(Yard::instance('shopping')->count())
|
||||
<span class="">{{ \Yard::instance('shopping')->total() }} € </span>
|
||||
@endif
|
||||
</a>
|
||||
<div class="quick-cart-box" style="display: @if(Session::has('show-card-after-add')) block @else none @endif">
|
||||
<h4>Warenkorb</h4>
|
||||
|
||||
<div class="quick-cart-wrapper">
|
||||
@foreach(Yard::instance('shopping')->content() as $row)
|
||||
<a href="{{ url('/produkte/alle-produkte/'.$row->options->slug) }}"><!-- cart item -->
|
||||
@if($row->options->has('image'))
|
||||
<img src="{{ route('product_image', [$row->options->image]) }}" width="50" height="66" alt="">
|
||||
@else
|
||||
<img src="{{ asset('/assets/images/1x1.png') }}" width="50" height="66" alt="">
|
||||
@endif
|
||||
<h5>{{ $row->name }}</h5>
|
||||
<span class="price">{{ $row->qty }}x <strong>{{ $row->price() }} €</strong></span>
|
||||
|
||||
</a><!-- /cart item -->
|
||||
@endforeach
|
||||
</div>
|
||||
<!-- 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>
|
||||
<br>
|
||||
<em style="font-size: 0.9em">inkl. MwSt. zzgl. Versandkosten</em>
|
||||
</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="#" class="btn btn-sm btn-default mt-3 quick-cart-box-close">schließen</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- Logo -->
|
||||
<a class="logo pull-left" href="{{ url('/') }}">
|
||||
<img class="fixed_top" src="/assets/images/logo_mivita.png" alt="mivita" />
|
||||
<img class="fixed_scroll" src="/assets/images/logo_mivita_fixed.png" alt="mivita" />
|
||||
</a>
|
||||
<div class="navbar-collapse pull-right nav-main-collapse collapse">
|
||||
<nav class="nav-main">
|
||||
<ul id="topMain" class="nav nav-pills nav-main nav-onepage">
|
||||
<li class="{{ Request::is('/') ? ' active' : '' }}">
|
||||
<a href="/">
|
||||
Start
|
||||
</a>
|
||||
</li>
|
||||
<li class="{{ Request::is('aloevera') ? ' active' : '' }}">
|
||||
<a href="{{url('/aloevera')}}">
|
||||
Aloe Vera
|
||||
</a>
|
||||
</li>
|
||||
<li class="{{ Request::is('produkte/*') ? ' active' : '' }}">
|
||||
<a href="{{url('/produkte/alle-produkte')}}/">
|
||||
Produktwelt
|
||||
</a>
|
||||
</li>
|
||||
<li class="{{ Request::is('geschaeftsmodell/*') ? ' active' : '' }}">
|
||||
<a href="{{url('/geschaeftsmodell/karrierechancen')}} ">
|
||||
Karrierechancen
|
||||
</a>
|
||||
</li>
|
||||
<li class="{{ Request::is('kontakt') ? ' active' : '' }}">
|
||||
<a href="{{ url('kontakt') }}">
|
||||
Kontakt
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
</header>
|
||||
<!-- /Top Nav -->
|
||||
|
||||
</div>
|
||||
10
resources/views/_bak/web/user/layouts/layout.blade.php
Normal file
10
resources/views/_bak/web/user/layouts/layout.blade.php
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
@extends('web.user.layouts.application')
|
||||
|
||||
@section('layout-content')
|
||||
@include('web.user.layouts.includes.header')
|
||||
<!-- wrapper -->
|
||||
<div id="wrapper">
|
||||
@yield('content')
|
||||
@include('web.user.layouts.includes.footer')
|
||||
</div>
|
||||
@endsection
|
||||
370
resources/views/_bak/web/user/start.blade.php
Normal file
370
resources/views/_bak/web/user/start.blade.php
Normal file
|
|
@ -0,0 +1,370 @@
|
|||
@extends('web.user.layouts.layout')
|
||||
|
||||
@section('content')
|
||||
|
||||
|
||||
<style type="text/css">
|
||||
.tp-caption {
|
||||
text-shadow: none;
|
||||
}
|
||||
div.shop-item {
|
||||
margin-bottom: 30px;
|
||||
border: 1px solid #ddd;
|
||||
}
|
||||
|
||||
div.shop-item > .thumbnail, .thumbnail {
|
||||
border: none;
|
||||
}
|
||||
|
||||
div.shop-item-summary {
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
div.shop-item-summary h2 a {
|
||||
color: #9aa983;
|
||||
font-size: 1.2em;
|
||||
margin: 0 0 10px 0;
|
||||
}
|
||||
|
||||
div.shop-item-buttons {
|
||||
padding: 0 8px 10px 8px;
|
||||
}
|
||||
|
||||
div.shop-item-buttons .btn-xs {
|
||||
padding: 4px;
|
||||
}
|
||||
img.avatar {
|
||||
width: 75%;
|
||||
max-width: 200px;
|
||||
border: 6px solid #bbccab;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
<!-- REVOLUTION SLIDER -->
|
||||
<section id="slider" class="slider fullwidthbanner-container roundedcorners">
|
||||
|
||||
<div class="fullwidthbanner" data-height="500" data-navigationStyle="">
|
||||
<ul class="hide">
|
||||
|
||||
<!-- SLIDE -->
|
||||
<li data-transition="fade" data-slotamount="1" data-masterspeed="1000" data-saveperformance="off"
|
||||
data-title="Slide">
|
||||
|
||||
<img src="{{ asset('assets/images/1x1.png') }}" data-lazyload="{{ asset('assets/images/slider-hg_gruen-mitte.jpg') }}" alt=""
|
||||
data-bgfit="cover" data-bgposition="center top" data-bgrepeat="no-repeat"/>
|
||||
|
||||
<div class="overlay dark-0"><!-- dark overlay [1 to 9 opacity] --></div>
|
||||
|
||||
<div class="tp-caption customin ltl tp-resizeme text_white"
|
||||
data-x="center"
|
||||
data-y="60"
|
||||
data-customin="x:0;y:150;z:0;rotationZ:0;scaleX:1;scaleY:1;skewX:0;skewY:0;opacity:0;transformPerspective:200;transformOrigin:50% 0%;"
|
||||
data-speed="800"
|
||||
data-start="1000"
|
||||
data-easing="easeOutQuad"
|
||||
data-splitin="none"
|
||||
data-splitout="none"
|
||||
data-elementdelay="0.01"
|
||||
data-endelementdelay="0.1"
|
||||
data-endspeed="1000"
|
||||
data-endeasing="Power4.easeIn" style="z-index: 10;">
|
||||
<span class="weight-400">Deutscher Direktvertrieb für</span>
|
||||
</div>
|
||||
|
||||
<div class="tp-caption customin ltl tp-resizeme large_bold_white"
|
||||
data-x="center"
|
||||
data-y="100"
|
||||
data-customin="x:0;y:150;z:0;rotationZ:0;scaleX:1;scaleY:1;skewX:0;skewY:0;opacity:0;transformPerspective:200;transformOrigin:50% 0%;"
|
||||
data-speed="800"
|
||||
data-start="1200"
|
||||
data-easing="easeOutQuad"
|
||||
data-splitin="none"
|
||||
data-splitout="none"
|
||||
data-elementdelay="0.01"
|
||||
data-endelementdelay="0.1"
|
||||
data-endspeed="1000"
|
||||
data-endeasing="Power4.easeIn" style="z-index: 10;">
|
||||
<span class="h1">100% Premium Bio Aloe Vera</span>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tp-bannertimer"></div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- /REVOLUTION SLIDER -->
|
||||
|
||||
|
||||
<!-- -->
|
||||
<section>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
||||
<div class="col-md-9">
|
||||
<h1>{{$site->headline}}</h1>
|
||||
<p class="margin-bottom-20">{{$site->copy}}</p>
|
||||
|
||||
@if($site->hasImage())
|
||||
<img class="img-responsive margin-bottom-20" src="{{ route('iq_image', [$site->iq_image->slug]) }}" alt="">
|
||||
@endif
|
||||
|
||||
<ul class="shop-item-list row list-inline nomargin">
|
||||
@foreach($site->getProductModels() as $product)
|
||||
<!-- ITEM -->
|
||||
<li class="col-lg-4 col-sm-4">
|
||||
@include('web.templates.produkte-item', ['subsite' => 'alle-produkte'])
|
||||
</li>
|
||||
<!-- /ITEM -->
|
||||
@endforeach
|
||||
</ul>
|
||||
<div class="text-center">
|
||||
<a href="{{url('/produkte')}}" class="btn btn-lg btn-primary ">Alle Produkte anzeigen</a>
|
||||
</div>
|
||||
<div class="divider divider-center divider-color"><!-- divider -->
|
||||
<i class="fa fa-chevron-down"></i>
|
||||
</div>
|
||||
|
||||
<h1>Spare mit Sets</h1>
|
||||
<ul class="shop-item-list row list-inline nomargin">
|
||||
@foreach($site->getProductSetModels() as $product)
|
||||
<!-- ITEM -->
|
||||
<li class="col-lg-4 col-sm-4">
|
||||
@include('web.templates.produkte-item', ['subsite' => 'alle-produkte'])
|
||||
</li>
|
||||
<!-- /ITEM -->
|
||||
@endforeach
|
||||
</ul>
|
||||
<div class="text-center">
|
||||
<a href="{{url('/produkte/aktions-sets')}}" class="btn btn-lg btn-primary ">Alle Sets anzeigen</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="divider divider-center divider-color visible-xs visible-sm"><!-- divider -->
|
||||
<i class="fa fa-chevron-down"></i>
|
||||
</div>
|
||||
|
||||
|
||||
<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>
|
||||
<div class="text-center">
|
||||
@if($user_shop->isImage())
|
||||
<img class="img-responsive rounded avatar" src="{{ url($user_shop->getImage()) }}" alt="">
|
||||
@else
|
||||
<img class="img-responsive rounded avatar" src="{{ asset('assets/images/avatar.png') }}" alt="">
|
||||
@endif
|
||||
</div>
|
||||
|
||||
<p class="text-center">
|
||||
@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) !!}
|
||||
@endif
|
||||
<br>
|
||||
{{ $user_shop->getSubdomain(true) }}
|
||||
</p>
|
||||
|
||||
@if($user_shop->accessibility)
|
||||
<p class="text-center">
|
||||
<strong>Meine Erreichbarkeit:</strong><br>
|
||||
{!! nl2br($user_shop->accessibility) !!}
|
||||
</p>
|
||||
@endif
|
||||
|
||||
@if($user_shop->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 }}“
|
||||
</em>
|
||||
</p>
|
||||
@endif
|
||||
|
||||
@if($user_shop->on_sites)
|
||||
<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>
|
||||
<div class="clearfix lightbox" data-img-big="1" data-plugin-options='{"delegate": "a", "gallery": {"enabled": true}}'>
|
||||
|
||||
@foreach($user_shop->on_sites as $image)
|
||||
|
||||
<div class="col-xs-6 col-sm-4 col-md-6" style="padding: 2px;">
|
||||
<a class="image-hover" href="{{ route('user_shop_image', [$image->slug]) }}">
|
||||
<img src="{{ route('user_shop_image', [$image->slug]) }}" alt="..." class="img-responsive">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
@endforeach
|
||||
|
||||
</div>
|
||||
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="divider divider-center divider-color"><!-- divider -->
|
||||
<i class="fa fa-chevron-down"></i>
|
||||
</div>
|
||||
|
||||
<!-- BORN TO BE A WINNER -->
|
||||
<article class="row">
|
||||
<div class="col-md-6">
|
||||
<!-- OWL SLIDER -->
|
||||
<div class="owl-carousel buttons-autohide controlls-over nomargin"
|
||||
data-plugin-options='{"items": 1, "autoHeight": true, "navigation": true, "pagination": true, "transitionStyle":"backSlide", "progressBar":"true"}'>
|
||||
<div>
|
||||
<img class="img-responsive" src="{{ asset('assets/images/aloe-vera-farm-mallorca.jpg') }}" alt="">
|
||||
</div>
|
||||
<div>
|
||||
<img class="img-responsive" src="{{ asset('assets/images/beratung-ruth-mallorca.jpg') }}" alt="">
|
||||
</div>
|
||||
<div>
|
||||
<img class="img-responsive" src="{{ asset('assets/images/mivita-schulung-mallorca.jpg') }}" alt="">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<!-- /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>
|
||||
|
||||
</div>
|
||||
</article>
|
||||
<!-- /BORN TO BE A WINNER -->
|
||||
|
||||
</div>
|
||||
</section>
|
||||
<!-- / -->
|
||||
|
||||
|
||||
<!-- -->
|
||||
<section>
|
||||
<div class="container">
|
||||
|
||||
<!-- FEATURED BOXES 3 -->
|
||||
<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>
|
||||
|
||||
<a href="/aloevera">
|
||||
Mehr
|
||||
<!-- /word rotator -->
|
||||
<span class="word-rotator" data-delay="2000">
|
||||
<span class="items">
|
||||
<span>lesen</span>
|
||||
<span>JETZT</span>
|
||||
</span>
|
||||
</span><!-- /word rotator -->
|
||||
<i class="glyphicon glyphicon-menu-right size-12"></i>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</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>
|
||||
|
||||
<a href="/produkte">
|
||||
Mehr
|
||||
<!-- /word rotator -->
|
||||
<span class="word-rotator" data-delay="2000">
|
||||
<span class="items">
|
||||
<span>lesen</span>
|
||||
<span>JETZT</span>
|
||||
</span>
|
||||
</span><!-- /word rotator -->
|
||||
<i class="glyphicon glyphicon-menu-right size-12"></i>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</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>
|
||||
|
||||
<a href="/geschaeftsmodell/karrierechancen">
|
||||
Mehr
|
||||
<!-- /word rotator -->
|
||||
<span class="word-rotator" data-delay="2000">
|
||||
<span class="items">
|
||||
<span>lesen</span>
|
||||
<span>JETZT</span>
|
||||
</span>
|
||||
</span><!-- /word rotator -->
|
||||
<i class="glyphicon glyphicon-menu-right size-12"></i>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<!-- /FEATURED BOXES 3 -->
|
||||
|
||||
</div>
|
||||
</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>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-lg-6">
|
||||
|
||||
<div class="embed-responsive embed-responsive-16by9 box-shadow-1">
|
||||
<iframe width="560" height="315" src="https://www.youtube.com/embed/ChHAxy6SbkM?rel=0"
|
||||
frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
<!-- / -->
|
||||
|
||||
|
||||
|
||||
@endsection
|
||||
Loading…
Add table
Add a link
Reference in a new issue