08 2024
This commit is contained in:
parent
04d677d37a
commit
bfa3bb1df4
1191 changed files with 637397 additions and 10619 deletions
|
|
@ -38,7 +38,43 @@
|
|||
margin-top: 8px;
|
||||
}
|
||||
</style>
|
||||
<!-- TOP NAV -->
|
||||
|
||||
<div id="topBar">
|
||||
<div class="container">
|
||||
<ul class="top-links list-inline pull-right">
|
||||
<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"> <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>
|
||||
<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">
|
||||
<li><a tabindex="-1" href="#"><i class="fa fa-history"></i> ORDER HISTORY</a></li>
|
||||
<li class="divider"></li>
|
||||
<li><a tabindex="-1" href="#"><i class="fa fa-bookmark"></i> MY WISHLIST</a></li>
|
||||
<li><a tabindex="-1" href="#"><i class="fa fa-edit"></i> MY REVIEWS</a></li>
|
||||
<li><a tabindex="-1" href="#"><i class="fa fa-cog"></i> MY SETTINGS</a></li>
|
||||
<li class="divider"></li>
|
||||
<li><a tabindex="-1" href="#"><i class="glyphicon glyphicon-off"></i> LOGOUT</a></li>
|
||||
</ul>
|
||||
</li>--}}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<header id="topNav">
|
||||
<div class="container">
|
||||
<!-- Mobile Menu Button -->
|
||||
|
|
@ -56,34 +92,34 @@
|
|||
<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>
|
||||
@if(!$user_shop)
|
||||
<li class="">
|
||||
<a href="https://mivita.shop/produkte/alle-produkte">
|
||||
Shop
|
||||
{{ __('website.shop') }}
|
||||
</a>
|
||||
</li>
|
||||
@endif
|
||||
<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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue