Tree Travel Guide
This commit is contained in:
parent
a1ca534f55
commit
1f340e96fa
78 changed files with 4133 additions and 1027 deletions
|
|
@ -74,6 +74,10 @@
|
|||
|
||||
|
||||
<div class="form-row">
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="travel_guide_keyword">{{ __('Keyword (optional | Verlinkung im Text)') }}</label>
|
||||
{{ Form::text('keyword', $travel_guide->keyword, array('placeholder'=>__('Keyword'), 'class'=>'form-control', 'id'=>'travel_guide_keyword')) }}
|
||||
</div>
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="travel_guide_meta_title">{{ __('META-Titel (optional)') }}</label>
|
||||
{{ Form::text('meta_title', $travel_guide->meta_title, array('placeholder'=>__('meta_title'), 'class'=>'form-control', 'id'=>'travel_guide_meta_title')) }}
|
||||
|
|
|
|||
276
resources/views/cms/travel_guide/tree-detail.blade.php
Executable file
276
resources/views/cms/travel_guide/tree-detail.blade.php
Executable file
|
|
@ -0,0 +1,276 @@
|
|||
@extends('layouts.layout-2')
|
||||
|
||||
@section('content')
|
||||
<style>
|
||||
.alert ul {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
</style>
|
||||
@if ($errors->any())
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="alert alert-danger">
|
||||
<ul>
|
||||
@foreach ($errors->all() as $error)
|
||||
<li>{{ $error }}</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
|
||||
|
||||
<h4 class="font-weight-bold py-3 mb-1">
|
||||
Reiseführer Tree @if($id == "new") <span class="text-primary">anlegen</span> @else {{"(".$model->name.")"}} verwalten @endif
|
||||
|
||||
<div class="float-right">
|
||||
<a href="{{route('iq_content_tree_repair', [$model->id])}}" class="btn btn-default btn-sm">{{ __('repair') }}</a>
|
||||
</div>
|
||||
|
||||
</h4>
|
||||
|
||||
<div class="clearfix"></div>
|
||||
|
||||
<input type="hidden" name="id" id="id" value="{{$id}}">
|
||||
<div class="card messages-card">
|
||||
<div class="row no-gutters">
|
||||
<!-- sidebox -->
|
||||
<div class="messages-sidebox large messages-scroll col">
|
||||
|
||||
<div class="card-body py-3">
|
||||
<div class="media align-items-center">
|
||||
<div class="media-body">
|
||||
<button type="button" class="btn btn-primary btn-block" data-toggle="modal" data-target="#modals-load-content"
|
||||
data-id="add"
|
||||
data-model="tree"
|
||||
data-action="tree-node"
|
||||
data-request="{!! array_to_json(['tree_id'=>$model->id]) !!}"
|
||||
data-route="{{ route('iq_content_modal_load') }}"><i class="ion ion-ios-add-circle"></i> Add node</button>
|
||||
</div>
|
||||
<a href="javascript:void(0)" class="messages-sidebox-toggler d-lg-none d-block text-muted text-large font-weight-light pl-4">×</a>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="border-light m-0">
|
||||
|
||||
<div class="card-body pt-3">
|
||||
{!! Form::open(['url' => route('iq_content_tree_detail', [$model->id]), 'class' => '']) !!}
|
||||
<input type="hidden" id="nestable-output" name="nestable-output" value="">
|
||||
<input type="hidden" name="tree_id" value="{{$model->id}}">
|
||||
|
||||
<div class="mb-2" style="height: 35px">
|
||||
<div class="float-right">
|
||||
<button type="button" class="btn btn-default btn-sm" data-action="expand-all" id="nestable-menu-expand"><i class="ion ion-ios-arrow-down"></i></button>
|
||||
<button type="button" class="btn btn-default btn-sm" data-action="collapse-all" id="nestable-menu-collapse"><i class="ion ion-ios-arrow-up"></i></button>
|
||||
</div>
|
||||
<div class="iq-save-bar" style="display: none">
|
||||
<a href="" class="btn btn-warning btn-md icon-btn messages-tooltip text-white mr-2" title="Refresh"><i class="ion ion-md-refresh"></i></a>
|
||||
<button type="submit" class="btn btn-success btn-md icon-btn messages-tooltip text-white" title="Save"><i class="ion ion-md-save"></i></button>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="badge badge-outline-primary btn-block py-2 px-3 text-left "> <span class="far fa-globe"></span> {{$model->name}}
|
||||
<a href="" class="float-right" data-toggle="modal" data-target="#modals-load-content"
|
||||
data-id="{{$model->id}}"
|
||||
data-model="tree"
|
||||
data-action="tree-content"
|
||||
data-request=""
|
||||
data-route="{{ route('iq_content_modal_load') }}"><span class="far fa-edit"></span></a>
|
||||
</div>
|
||||
<div class="dd" id="netstable-content-tree">
|
||||
{!! \App\Services\HTMLTreeHelper::makeNestableList($model, ($tree_node ? $tree_node->id : false)) !!}
|
||||
</div>
|
||||
</div>
|
||||
{!! Form::close() !!}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<!-- / sidebox -->
|
||||
|
||||
<div class="col">
|
||||
@if($tree_node)
|
||||
<!-- Controls -->
|
||||
{!! Form::open(['url' => route('iq_content_tree_detail', [$model->id, $tree_node->id, ($area_section? $area_section->id : '')]), 'class' => '']) !!}
|
||||
<div class="media flex-wrap align-items-center py-2 px-2">
|
||||
<div class="media-body d-flex flex-wrap flex-basis-100 flex-basis-sm-auto">
|
||||
<button type="button" class="btn btn-default borderless md-btn-flat icon-btn messages-sidebox-toggler d-lg-none d-block text-muted text-large mr-2"><i class="ion ion-md-more"></i></button>
|
||||
<div style="height: 35px"></div>
|
||||
<div class="iq-save-bar" style="display: none">
|
||||
<a href="" class="btn btn-warning btn-md icon-btn messages-tooltip text-white mr-2" title="Refresh"><i class="ion ion-md-refresh"></i></a>
|
||||
<button type="submit" class="btn btn-success btn-md icon-btn messages-tooltip text-white" title="Save"><i class="ion ion-md-save"></i></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<div class="nav-responsive-md">
|
||||
<ul class="nav nav-pills nav-fill">
|
||||
<li class="nav-item">
|
||||
<a href="{{route('iq_content_tree_detail', [$model->id, $tree_node->id])}}" class="nav-link @if(!$area_section) active1 @endif">{{$tree_node->name}}
|
||||
</a>
|
||||
</li>
|
||||
|
||||
@if($tree_node->iq_content_site)
|
||||
@foreach($tree_node->iq_content_site->iq_content_area->iq_content_area_sections as $sections)
|
||||
<li class="nav-item">
|
||||
<a href="{{route('iq_content_tree_detail', [$model->id, $tree_node->id,$sections->id])}}" class="nav-link @if($area_section && $area_section->id == $sections->id) active @endif">{{ $sections->name }}
|
||||
{{-- <span class="badge badge-primary">22</span> --}}
|
||||
</a>
|
||||
</li>
|
||||
@endforeach
|
||||
@endif
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@if(!$site_fields)
|
||||
<div class="card-body">
|
||||
<input type="hidden" name="id" value="{{$tree_node->id}}">
|
||||
<input type="hidden" name="model" value="tree">
|
||||
<input type="hidden" name="action" value="tree-node">
|
||||
<input type="hidden" name="tree_id" value="{{$model->id}}">
|
||||
<div class="input-group mb-4">
|
||||
<div class="input-group-prepend">
|
||||
<span class="input-group-text"><span class="far fa-link mr-2 text-primary"></span></span>
|
||||
</div>
|
||||
{{ Form::text('uri', $tree_node->getUri(), array('readonly'=>true, 'class'=>'form-control')) }}
|
||||
</div>
|
||||
<div class="form-row mb-2">
|
||||
<div class="form-group col">
|
||||
<label class="custom-control custom-checkbox float-right">
|
||||
{!! Form::checkbox('active', 1, $tree_node->active, ['class'=>'custom-control-input']) !!}
|
||||
<span class="custom-control-label">{{__('aktiv')}}</span>
|
||||
</label>
|
||||
<label for="name" class="form-label">Name (required)</label>
|
||||
{{ Form::text('name', $tree_node->name, array('placeholder'=>'', 'class'=>'form-control', 'required'=>'true')) }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-row mb-2">
|
||||
<div class="form-group col">
|
||||
|
||||
<button type="button" class="btn btn-primary btn-sm float-right mb-2" data-toggle="modal" data-target="#modals-load-content"
|
||||
data-id="add"
|
||||
data-model="tree"
|
||||
data-action="tree-site-content"
|
||||
data-request="{!! array_to_json(['tree_id'=>$model->id,'tree_node_id'=>$tree_node->id]) !!}"
|
||||
data-route="{{ route('iq_content_modal_load') }}"><i class="ion ion-ios-add-circle"></i> Seite hinzufügen</button>
|
||||
|
||||
<label for="site_id" class="form-label">Seiten</label>
|
||||
@if($tree_node->travel_guides)
|
||||
|
||||
<table class="table table-striped border-bottom">
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="max-width: 60px;"> </th>
|
||||
<th>{{__('Name')}}</th>
|
||||
<th>{{__('Keyword')}}</th>
|
||||
<th>{{__('Langer Text')}}</th>
|
||||
<th>{{__('sichtbar')}}</th>
|
||||
<th>#</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($tree_node->travel_guides as $travel_guide)
|
||||
<tr>
|
||||
<td style="width: 5%;">
|
||||
<a href="{{ route('cms_travel_guide_detail', [$travel_guide->id]) }}" class="btn icon-btn btn-sm btn-primary">
|
||||
<span class="far fa-edit"></span>
|
||||
</a>
|
||||
</td>
|
||||
<td>{{$travel_guide->name}}</td>
|
||||
<td>{{$travel_guide->keyword}}</td>
|
||||
<td> @if($travel_guide->scope)
|
||||
<span class="badge badge-pill badge-success"><i class="far fa-check"></i></span>
|
||||
@else
|
||||
<span class="badge badge-pill badge-danger"><i class="far fa-times"></i></span>
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
@if($travel_guide->active)
|
||||
<span class="badge badge-pill badge-success"><i class="far fa-check"></i></span>
|
||||
@else
|
||||
<span class="badge badge-pill badge-danger"><i class="far fa-times"></i></span>
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
<a class="text-danger" href="{{ route('iq_content_tree_detail_remove', [$model->id, $tree_node->id, $travel_guide->id]) }}" onclick="return confirm('{{__('Seite aus Tree entfernen?')}}');"><i class="far fa-reply"></i></a>
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
@endif
|
||||
|
||||
{{--<select class="selectpicker" name="site_id" id="site_id"
|
||||
data-style="btn-light" data-live-search="true" data-container="body">
|
||||
{!! \App\Models\IQContentSite::getSiteOptions($tree_node->site_id) !!}
|
||||
|
||||
</select>--}}
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-row mb-2">
|
||||
<div class="form-group col">
|
||||
<label for="identifier" class="form-label">Slug</label>
|
||||
{{ Form::text('identifier', $tree_node->identifier, array('placeholder'=>'', 'class'=>'form-control')) }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group mb-2">
|
||||
<label class="form-label" for="description">Description</label>
|
||||
{{ Form::textarea('description', $tree_node->description, array('class'=>'form-control', 'rows'=>2)) }}
|
||||
</div>
|
||||
</div>
|
||||
@else
|
||||
<div id="dragula-drag-handles" class="mt-2">
|
||||
@foreach($site_fields as $key => $site_field)
|
||||
<div class="dragula-example card card-condenced">
|
||||
<input type="hidden" name="iq_content_site_field[{{$key}}][id]" value="{{ $site_field->id }}">
|
||||
<input type="hidden" name="iq_content_site_field[{{$key}}][site_id]" value="{{$site_field->site_id}}">
|
||||
<input type="hidden" name="iq_content_site_field[{{$key}}][model_field_id]" value="{{$site_field->model_field_id}}">
|
||||
<input type="hidden" name="iq_content_site_field[{{$key}}][field]" value="{{$site_field->field}}">
|
||||
<input type="hidden" name="iq_content_site_field[{{$key}}][settings]" value="{{ json_encode($site_field->settings) }}">
|
||||
<div class="card-body">
|
||||
<span class="handle fa fa-grip-vertical d-inline-block bg-light text-info p-2 mr-2 mb-1"></span>
|
||||
<i class="my-ui-icon-sm {{ $site_field->iq_content_model_field->fieldAsIcon() }} text-secondary mr-2"></i>
|
||||
<strong>{{ $site_field->iq_content_model_field->name }}</strong>
|
||||
<span class="text-muted ml-2">{{ $site_field->iq_content_model_field->identifier }}</span>
|
||||
<div class="float-right">
|
||||
{!! get_switcher_input($site_field->active, 'iq_content_site_field['.$key.'][active]') !!}
|
||||
|
||||
</div>
|
||||
<hr class="border-light my-2">
|
||||
<div class="form-group">
|
||||
@if($site_field->field == "string")
|
||||
{{ Form::text('iq_content_site_field['.$key.'][content]', $site_field->content, array('class'=>'form-control')) }}
|
||||
@endif
|
||||
@if($site_field->field == "text")
|
||||
@if($site_field->settings['editor'] == 'off')
|
||||
{{ Form::textarea('iq_content_site_field['.$key.'][content]', $site_field->content , ['class' => 'form-control']) }}
|
||||
@else
|
||||
{{ Form::textarea('iq_content_site_field['.$key.'][content]', $site_field->content , ['class' => 'form-control summernote']) }}
|
||||
@endif
|
||||
@endif
|
||||
@if($site_field->field == "media")
|
||||
{{ Form::text('iq_content_site_field['.$key.'][content]', $site_field->content, array('class'=>'form-control')) }}
|
||||
@endif
|
||||
</div>
|
||||
<span class="text-muted ml-2">{{ $site_field->iq_content_model_field->fieldAsName() }}</span>
|
||||
<div class="float-left">
|
||||
<i class="fa fa-search"></i> {!! get_switcher_input($site_field->search, 'iq_content_site_field['.$key.'][search]') !!}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
{!! Form::close() !!}
|
||||
|
||||
|
||||
@endif
|
||||
|
||||
</div>
|
||||
|
||||
</div><!-- / .row -->
|
||||
</div><!-- / .card -->
|
||||
|
||||
@endsection
|
||||
90
resources/views/cms/travel_guide/tree.blade.php
Executable file
90
resources/views/cms/travel_guide/tree.blade.php
Executable file
|
|
@ -0,0 +1,90 @@
|
|||
@extends('layouts.layout-2')
|
||||
|
||||
@section('content')
|
||||
|
||||
<h4 class="font-weight-bold mb-4">
|
||||
Reiseführer Trees
|
||||
</h4>
|
||||
<div class="card messages-card">
|
||||
<div class="row no-gutters">
|
||||
|
||||
<!-- content list -->
|
||||
<div class="col">
|
||||
<!-- Controls -->
|
||||
<div class="media flex-wrap align-items-center py-2 px-2">
|
||||
<div class="media-body d-flex flex-wrap flex-basis-100 flex-basis-sm-auto">
|
||||
<button type="button" class="btn btn-default borderless md-btn-flat icon-btn messages-sidebox-toggler d-lg-none d-block text-muted text-large mr-2"><i class="ion ion-md-more"></i></button>
|
||||
<a href="" class="btn btn-default borderless md-btn-flat icon-btn messages-tooltip text-muted" title="Refresh"><i class="ion ion-md-refresh"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<!-- / Controls -->
|
||||
<div class="table-responsive py-3 px-2">
|
||||
<table class="iq-datatables-standard table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="max-width: 60px;">#</th>
|
||||
<th>Name</th>
|
||||
<th>Identifier</th>
|
||||
<th>Description</th>
|
||||
<th>Nodes(s)</th>
|
||||
<th>Updated</th>
|
||||
<th>Status</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
||||
@foreach($models as $model)
|
||||
<tr class="">
|
||||
<td>
|
||||
<a href="{{ route('iq_content_tree_detail', [$model->id]) }}" class="btn icon-btn btn-sm btn-primary">
|
||||
<span class="far fa-edit"></span>
|
||||
</a>
|
||||
</td>
|
||||
<td><a href="{{ route('iq_content_tree_detail', [$model->id]) }}">{{ $model->name }}</a></td>
|
||||
<td>{{ $model->identifier }}</td>
|
||||
<td>{{ $model->description }}</td>
|
||||
<td>{{ $model->iq_content_tree_nodes->count() }}</td>
|
||||
<td>{{ $model->updated_at->format("d/m/Y") }}</td>
|
||||
<td>{!! get_active_badge($model->active) !!}</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<!-- / content list -->
|
||||
|
||||
<!-- sidebox -->
|
||||
<div class="messages-sidebox messages-scroll col">
|
||||
|
||||
<div class="card-header text-uppercase text-expanded text-muted">Tree</div>
|
||||
<div class="card-body py-3">
|
||||
<div class="media align-items-center">
|
||||
<div class="media-body">
|
||||
<button type="button" class="btn btn-primary btn-block" data-toggle="modal" data-target="#modals-load-content"
|
||||
data-id="add"
|
||||
data-model="tree"
|
||||
data-action="tree-content"
|
||||
data-request=""
|
||||
data-route="{{ route('iq_content_modal_load') }}"><i class="ion ion-ios-add-circle"></i> Add Tree</button>
|
||||
</div>
|
||||
<a href="javascript:void(0)" class="messages-sidebox-toggler d-lg-none d-block text-muted text-large font-weight-light pl-4">×</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="card-header text-uppercase text-expanded text-muted">Filter</div>
|
||||
<div class="card-body py-3">
|
||||
<a href="javascript:void(0)" class="d-flex justify-content-between align-items-center text-body font-weight-bold py-2">
|
||||
<div>
|
||||
All
|
||||
</div>
|
||||
<div class="badge badge-primary">{{ count($models) }}</div>
|
||||
</a>
|
||||
<hr class="border-light my-4">
|
||||
</div>
|
||||
</div>
|
||||
<!-- / sidebox -->
|
||||
</div><!-- / .row -->
|
||||
</div><!-- / .card -->
|
||||
@endsection
|
||||
|
||||
237
resources/views/emails/___auth.blade.php
Normal file
237
resources/views/emails/___auth.blade.php
Normal file
|
|
@ -0,0 +1,237 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>mein STERN TOURS</title>
|
||||
|
||||
<style type="text/css">
|
||||
@import url(https://fonts.googleapis.com/css?family=Roboto);
|
||||
img {
|
||||
max-width: 600px;
|
||||
outline: none;
|
||||
text-decoration: none;
|
||||
-ms-interpolation-mode: bicubic;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
border: 0;
|
||||
outline: none;
|
||||
color: #5f8155;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color:#e5aa30;
|
||||
}
|
||||
|
||||
a img {
|
||||
border: none;
|
||||
}
|
||||
|
||||
td, h1, h2, h3 {
|
||||
font-family: "Roboto", Helvetica, Arial, sans-serif;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
td {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
body {
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-webkit-text-size-adjust: none;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
color: #37302d;
|
||||
background: #ffffff;
|
||||
font-size: 15px;
|
||||
line-height: 26px
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse !important;
|
||||
}
|
||||
|
||||
.headline {
|
||||
color: #5f8155;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.force-full-width {
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
|
||||
<style type="text/css" media="screen">
|
||||
@media screen {
|
||||
/*Thanks Outlook 2013! http://goo.gl/XLxpyl*/
|
||||
td, h1, h2, h3 {
|
||||
font-family: 'Roboto', 'Helvetica Neue', 'Arial', 'sans-serif' !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<style type="text/css" media="only screen and (max-width: 480px)">
|
||||
/* Mobile styles */
|
||||
@media only screen and (max-width: 480px) {
|
||||
|
||||
table[class="w320"] {
|
||||
width: 320px !important;
|
||||
}
|
||||
|
||||
}
|
||||
</style>
|
||||
<!--[if mso]>
|
||||
<style type="text/css">
|
||||
body, table, td {
|
||||
font-family: Helvetica, Arial, sans-serif !important;
|
||||
}
|
||||
</style>
|
||||
<![endif]-->
|
||||
|
||||
|
||||
</head>
|
||||
<body class="body" style="padding:0; margin:0; display:block; background:#f8f8f8; -webkit-text-size-adjust:none" bgcolor="#f8f8f8">
|
||||
|
||||
<div style="display: none; mso-hide: all; width: 0px; height: 0px; max-width: 0px; max-height: 0px; font-size: 0px; line-height: 0px;">
|
||||
{{ $copy1line }}
|
||||
</div>
|
||||
|
||||
<table align="center" cellpadding="0" cellspacing="0" width="100%" height="100%">
|
||||
<tr>
|
||||
<td align="center" valign="top" bgcolor="#f8f8f8" width="100%">
|
||||
<center>
|
||||
<br>
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="700" class="w320">
|
||||
<tr>
|
||||
<td align="center" valign="top">
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td style=" text-align:center;">
|
||||
<center>
|
||||
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="">
|
||||
<tbody class="">
|
||||
<tr class="">
|
||||
<td align="center" valign="top" style="font-size: 0px;" class="">
|
||||
<picture class="">
|
||||
<img src="https://mein.sterntours.de/images/stern-tours-logo.png" alt="STERN TOURS" style="border:none" width="260">
|
||||
</picture>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><br></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="100%"
|
||||
bgcolor="#ffffff">
|
||||
<tr>
|
||||
<td class="headline">
|
||||
<br><br>
|
||||
<b>{{ $salutation }} </b>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<center>
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="90%">
|
||||
<tr>
|
||||
<td style="color:#37302d;">
|
||||
<br>
|
||||
{{ $copy1line }}
|
||||
<br>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</center>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<center>
|
||||
<table role="presentation" cellpadding="0" cellspacing="0" width="100%" border="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="word-wrap:break-word;background:transparent;font-size:0px;padding:10px 25px;padding-top:15px;padding-bottom:15px;padding-right:40px;padding-left:40px;" align="center" valign="top" background="data:image/gif;base64,">
|
||||
<table role="presentation" cellpadding="0" cellspacing="0" align="center" border="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="border:none;border-radius:20px;color:#ffffff;cursor:auto;padding:15px 25px;" align="center" valign="middle" bgcolor="#5f8155">
|
||||
<p style="text-decoration:none;background:#5f8155;color:#ffffff;font-family:Arial, sans-serif;font-size:13px;font-weight:normal;line-height:120%;text-transform:none;margin:0px;">
|
||||
<a href="{{ $url }}" style="color:#ffffff;font-size:14px;font-weight:bold;text-align:center;text-decoration:none;-webkit-text-size-adjust:none;">{{ $button }}</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</center>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#37302d;font-size: 14px;">
|
||||
<center>
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="90%">
|
||||
<tr>
|
||||
<td style="color:#37302d;">
|
||||
<br>
|
||||
{{ $copy2line }}<br>
|
||||
<span style="color: #cabda9; font-weight: normal; font-size: 13px; text-decoration: underline; word-wrap: break-word;">{{ $url }}</span>
|
||||
<br><br>
|
||||
{{ $greetings }} <br><b>Ihr Team von STERN TOURS</b>
|
||||
<br>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><br></td>
|
||||
</tr>
|
||||
</table>
|
||||
</center>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellpadding="0" cellspacing="0" class="force-full-width"
|
||||
bgcolor="#f8f8f8" style="margin: 0 auto">
|
||||
<tr>
|
||||
<td style="color:#7B7B7E; font-size:14px;">
|
||||
<br>
|
||||
STERN TOURS GmbH | Emser Straße 3 | 10719 Berlin<br>
|
||||
Tel: +49 (0) 30 700 94 100 | Fax: +49 (0) 30 700 94 1044 | stern@sterntours.de<br>
|
||||
<br>
|
||||
<a href="https://www.sterntours.de" style="color: #7B7B7E; text-decoration: underline;">www.sterntours.de</a>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#bbbbbb; font-size:12px;">
|
||||
Geschäftsführer: Thomas Stern | Registergericht: Amtsgericht Charlottenburg | Registernummer: HRB 67111<br>
|
||||
Steuernummer: 27/545/30703 | UST-Ident.-Nr.: DE192609253 | Finanzamt: Wilmersdorf<br>
|
||||
<a href="{{route('data_protected')}}">Datenschutzerklärung</a> <br>
|
||||
© 2018 All Rights Reserved <br>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,214 +1,766 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>STERN TOURS</title>
|
||||
<!-- Designed by https://github.com/kaytcat -->
|
||||
<!-- Robot header image designed by Freepik.com -->
|
||||
|
||||
<style type="text/css">
|
||||
@import url(https://fonts.googleapis.com/css?family=Roboto);
|
||||
|
||||
/* Take care of image borders and formatting */
|
||||
|
||||
img {
|
||||
max-width: 600px;
|
||||
outline: none;
|
||||
text-decoration: none;
|
||||
-ms-interpolation-mode: bicubic;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
border: 0;
|
||||
outline: none;
|
||||
color: #5f8155;
|
||||
}
|
||||
a:hover {
|
||||
color:#e5aa30;
|
||||
}
|
||||
|
||||
a img {
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* General styling */
|
||||
|
||||
td, h1, h2, h3 {
|
||||
font-family: "Roboto", Helvetica, Arial, sans-serif;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
td {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
body {
|
||||
-webkit-font-smoothing:antialiased;
|
||||
-webkit-text-size-adjust:none;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
color: #37302d;
|
||||
background: #ffffff;
|
||||
font-size: 15px;
|
||||
line-height: 26px
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse !important;
|
||||
}
|
||||
.headline {
|
||||
color: #5f8155;
|
||||
font-size: 16px;
|
||||
}
|
||||
.force-full-width {
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
|
||||
<style type="text/css" media="screen">
|
||||
@media screen {
|
||||
/*Thanks Outlook 2013! http://goo.gl/XLxpyl*/
|
||||
td, h1, h2, h3 {
|
||||
font-family: 'Roboto', 'Helvetica Neue', 'Arial', 'sans-serif' !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<style type="text/css" media="only screen and (max-width: 480px)">
|
||||
/* Mobile styles */
|
||||
@media only screen and (max-width: 480px) {
|
||||
|
||||
table[class="w320"] {
|
||||
width: 320px !important;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
</style>
|
||||
<!--[if mso]>
|
||||
<style type="text/css">
|
||||
body, table, td {font-family: Helvetica, Arial, sans-serif !important;}
|
||||
</style>
|
||||
<![endif]-->
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="body" style="padding:0; margin:0; display:block; background:#f8f8f8; -webkit-text-size-adjust:none" bgcolor="#f8f8f8">
|
||||
<table align="center" cellpadding="0" cellspacing="0" width="100%" height="100%" >
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="nl-wrapper-table" bgcolor="#EDEDED">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td align="center" valign="top" bgcolor="#f8f8f8" width="100%">
|
||||
<center>
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="700" class="w320">
|
||||
<tr>
|
||||
<td align="center" valign="top">
|
||||
<td valign="top">
|
||||
<table width="620" align="center" cellpadding="0" cellspacing="0" border="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="100%" style="margin:0 auto;">
|
||||
<tr>
|
||||
<td style="font-size: 30px; text-align:center;">
|
||||
<br>
|
||||
<img src="https://www.sterntours.de/images/da2f996_wlogo_1.png" alt="STERN TOURS" style="border:none" width="260">
|
||||
<br>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="100%" bgcolor="#ffffff">
|
||||
<tr>
|
||||
<td class="headline">
|
||||
<br><br>
|
||||
<b>{{ $salutation }} </b>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<center>
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="90%">
|
||||
<tr>
|
||||
<td style="color:#514d6a;">
|
||||
<br>
|
||||
{{ $copy1line }}
|
||||
<br>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</center>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<!--[if mso]>
|
||||
<v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="http://" style="height:50px;v-text-anchor:middle;width:250px;" arcsize="50%" stroke="f" fillcolor="#5f8155">
|
||||
<w:anchorlock/>
|
||||
<center>
|
||||
<![endif]-->
|
||||
<a href="{{ $url }}"
|
||||
style="background-color:#5f8155;border-radius:40px;color:#ffffff;display:inline-block;font-family:Helvetica, Arial, sans-serif;font-size:15px;font-weight:bold;line-height:50px;text-align:center;text-decoration:none;width:250px;-webkit-text-size-adjust:none;">{{ $button }}</a>
|
||||
<!--[if mso]>
|
||||
</center>
|
||||
</v:roundrect>
|
||||
<![endif]-->
|
||||
<br>
|
||||
</td>
|
||||
<tr>
|
||||
<tr>
|
||||
<td style="color:#514d6a;font-size: 14px;">
|
||||
<center>
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="90%">
|
||||
<tr>
|
||||
<td style="color:#514d6a;">
|
||||
<br>
|
||||
{{ $copy2line }}<br>
|
||||
<span style="color: #cabda9; font-weight: normal; font-size: 13px; text-decoration: underline; word-wrap: break-word;">{{ $url }}</span>
|
||||
<table align="center" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF"
|
||||
class="nl-body-table" width="620">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td colspan="3" valign="top" align="center" bgcolor="#EDEDED">
|
||||
<table cellpadding="0" cellspacing="0" border="0" align="center">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top" style="line-height: 0; font-size: 0;" height="26">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="center"
|
||||
style="padding-left: 20px; padding-right: 20px; padding-bottom: 6px"><span
|
||||
style="color:#7c7c7c; font-family: 'Arial', Helvetica, sans-serif; font-size:12px; line-height: 14px;">Wenn diese Nachricht nicht korrekt angezeigt wird, klicken Sie
|
||||
bitte</span> <a class="cmp_parsed_url" cmp_parsed_url="https://kommunikationsdienste.t-online.de/booking/mcs.html"
|
||||
target="_blank" href="https://kommunikationsdienste.t-online.de/booking/mcs.html"
|
||||
style="color:#0090c4; font-family: 'Arial', Helvetica, sans-serif; font-size:12px; line-height: 14px; text-decoration: underline;">hier</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" style="line-height: 0; font-size: 0;" height="4">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" align="left" valign="top" height="20"
|
||||
style="line-height: 0; font-size: 0">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td valign="top"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/header.jpg"
|
||||
width="580" border="0" alt="Telekom - Erleben, was verbindet."
|
||||
style="display: block;" class="head-image"></td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" align="left" valign="top" height="29"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td valign="top" height="24" style="border-top: 1px solid #d0d0d0;"> </td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
<td valign="top"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #e20074; font-size:19px; line-height: 27px; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
<strong>HERZLICH WILLKOMMEN BEI MAIL S FÜR KUNDEN DER TELEKOM</strong></p></td>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" valign="top" height="22"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
<td valign="top"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #4b4b4b; font-size:16px; line-height: 23px; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
<strong>Hallo Herr Adametz,</strong></p></td>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" valign="top" height="9" style="line-height: 0; font-size: 0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
<td valign="top"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size:14px; line-height: 20px; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
Herzlich Willkommen bei Telekom Mail S!<br><br>Mail S ist der kostenlose
|
||||
E-Mail-Dienst für Kunden der Telekom und
|
||||
bietet Ihnen exklusive Produktvorteile – egal ob auf dem
|
||||
Smartphone, Tablet oder Computer.<br><br>Mit Sync-Plus haben Sie Ihre E-Mails,
|
||||
Kontakte und Termine immer
|
||||
dort verfügbar, wo Sie sie brauchen. <a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://sync.t-online.de"
|
||||
target="_blank"
|
||||
href="https://sync.t-online.de"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #0090c4; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; text-decoration: none;">Richten
|
||||
Sie Sync-Plus am besten gleich ein!</a><br><br>Für Ihre Ablage senden wir
|
||||
Ihnen die Informationen, die Sie uns
|
||||
während der Registrierung mitgeteilt haben:</p></td>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" valign="top" height="25" style="line-height: 0; font-size: 0">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
<td valign="top" bgcolor="#EDEDED">
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%"
|
||||
class="personalized-info-table">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top" height="19" style="line-height: 0; font-size: 0">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" width="30" style="line-height: 0; font-size: 0"> </td>
|
||||
<td valign="top">
|
||||
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="middle" width="35%"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size:14px; line-height: 20px;">
|
||||
Name:
|
||||
</td>
|
||||
<td valign="top" width="65%"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size:14px; line-height: 20px;">
|
||||
<strong style="line-height: 20px">Kevin Adametz</strong>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" valign="top"
|
||||
style="line-height: 0; font-size: 0;" height="5">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="middle"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size:14px; line-height: 20px;">
|
||||
<span style="line-height: 20px">E-Mail-Adresse:</span></td>
|
||||
<td valign="top"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size:14px; line-height: 20px;">
|
||||
<strong style="line-height: 20px"><span
|
||||
class="cmp_parsed_email"
|
||||
data-cmp_parsed_email="kevin.adametz@t-online.de"
|
||||
data-ce-class="Emails">kevin.adametz@t-online.de</span></strong>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" valign="top"
|
||||
style="line-height: 0; font-size: 0;" height="5">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="middle"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size:14px; line-height: 20px;">
|
||||
<span style="line-height: 20px">Gebuchter Dienst:</span>
|
||||
</td>
|
||||
<td valign="top"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size:14px; line-height: 20px;">
|
||||
<strong style="line-height: 20px">Mail S</strong></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
<td valign="top" width="30" style="line-height: 0; font-size: 0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" height="19" style="line-height: 0; font-size: 0">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" valign="top" height="25" style="line-height: 0; font-size: 0">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
<td valign="top"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size:14px; line-height: 20px; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
Ihre gebuchten Produkte und Services können Sie jederzeit im <a
|
||||
class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://www.telekom.de/kundencenter/startseite"
|
||||
target="_blank" href="https://www.telekom.de/kundencenter/startseite"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #0090c4; font-size:14px; line-height: 20px; text-decoration: none;">Kundencenter</a>
|
||||
ändern. Verwalten Sie in den <a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://account.idm.telekom.com/account-manager/index.xhtml"
|
||||
target="_blank"
|
||||
href="https://account.idm.telekom.com/account-manager/index.xhtml"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #0090c4; font-size:14px; line-height: 20px; text-decoration: none;">Anmeldeeinstellungen</a>
|
||||
bequem Ihre Benutzerdaten und Passwörter.<br><br></p>
|
||||
<p style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size:14px; line-height: 20px; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
Wir wünschen Ihnen viel Spaß mit Mail S<br><span
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #4b4b4b; font-size:14px; line-height: 20px;">Ihre Telekom</span>
|
||||
</p></td>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" align="left" valign="top" height="25"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td valign="top" height="24" style="border-top: 1px solid #d0d0d0;"> </td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
<td valign="top"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #4b4b4b; font-size: 16px; line-height: 23px; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
<strong>So kommen Sie zu E-Mail!</strong></p></td>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td valign="top" height="17"> </td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td valign="top">
|
||||
<table cellpadding="0" cellspacing="0" border="0" align="left" width="48%"
|
||||
class="column-left-table" style="margin-bottom: 24px">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="middle" width="18%"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/icon-inbox.gif"
|
||||
width="44" height="41"></td>
|
||||
<td valign="top" width="3%"> </td>
|
||||
<td valign="top" width="79%"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #4b4b4b; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
Rufen Sie Ihr E-Mail-Postfach von zu Hause über Ihren
|
||||
Internet-Browser auf.</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" height="10" colspan="3"
|
||||
style="line-height: 0; font-size: 0">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"></td>
|
||||
<td valign="top"></td>
|
||||
<td valign="top"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://email.t-online.de"
|
||||
target="_blank"
|
||||
href="https://email.t-online.de"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #0090c4; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; text-decoration: none;">Zum
|
||||
E-Mail Center</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table cellpadding="0" cellspacing="0" border="0" align="right" width="48%"
|
||||
class="column-right-table">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="middle" width="18%"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/icon-mail-app.gif"
|
||||
width="32" height="41"></td>
|
||||
<td valign="top" width="3%"> </td>
|
||||
<td valign="top" width="79%"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #4b4b4b; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
Nutzen Sie E-Mail mit der Telekom Mail App auch
|
||||
unterwegs auf Ihrem
|
||||
Smartphone oder Tablet.</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" height="10" colspan="3"
|
||||
style="line-height: 0; font-size: 0">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"></td>
|
||||
<td valign="top"></td>
|
||||
<td valign="top">
|
||||
<table align="left" cellpadding="0" cellspacing="0"
|
||||
border="0" class="app-download-table-left">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://itunes.apple.com/de/app/telekom-mail/id803009523?mt=8"
|
||||
target="_blank"
|
||||
href="https://itunes.apple.com/de/app/telekom-mail/id803009523?mt=8"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/app-store.png"
|
||||
width="93" height="32"
|
||||
style="display: block;" border="0"></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table align="right" cellpadding="0" cellspacing="0"
|
||||
border="0" class="app-download-table-right">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://play.google.com/store/apps/details?id=de.telekom.mail"
|
||||
target="_blank"
|
||||
href="https://play.google.com/store/apps/details?id=de.telekom.mail"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/google-play.png"
|
||||
width="90" height="32"
|
||||
style="display: block;" border="0"></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" style="line-height: 0; font-size: 0;" height="40"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td valign="top">
|
||||
<table cellpadding="0" cellspacing="0" border="0" align="left" width="48%"
|
||||
class="column-left-table" style="margin-bottom: 24px">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="middle" width="18%"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/icon-mail-clients.gif"
|
||||
width="40" height="40"></td>
|
||||
<td valign="top" width="3%"> </td>
|
||||
<td valign="top" width="79%"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #4b4b4b; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
Sie nutzen ein E-Mail-Programm wie z. B. Outlook oder
|
||||
Thunderbird?
|
||||
Richten Sie sich dieses hier ein.</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" height="10" colspan="3"
|
||||
style="line-height: 0; font-size: 0">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"></td>
|
||||
<td valign="top"></td>
|
||||
<td valign="top"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="http://www.telekom.de/hilfe/festnetz-internet-tv/e-mail/e-mail-konto"
|
||||
target="_blank"
|
||||
href="http://www.telekom.de/hilfe/festnetz-internet-tv/e-mail/e-mail-konto"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #0090c4; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; text-decoration: none;">Jetzt
|
||||
einrichten</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table cellpadding="0" cellspacing="0" border="0" align="right" width="48%"
|
||||
class="column-right-table">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="middle" width="18%"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/icon-sync-plus.gif"
|
||||
width="31" height="35"></td>
|
||||
<td valign="top" width="3%"> </td>
|
||||
<td valign="top" width="79%"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #4b4b4b; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
Mit Sync-Plus haben Sie Ihre E-Mails, Kontakte und
|
||||
Termine immer
|
||||
dort verfügbar, wo Sie sie brauchen.</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" height="10" colspan="3"
|
||||
style="line-height: 0; font-size: 0">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"></td>
|
||||
<td valign="top"></td>
|
||||
<td valign="top"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://sync.t-online.de"
|
||||
target="_blank"
|
||||
href="https://sync.t-online.de"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #0090c4; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; text-decoration: none;">Sync-Plus
|
||||
einrichten</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" align="left" valign="top" height="24"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td valign="top" height="24" style="border-top: 1px solid #d0d0d0;"> </td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
<td valign="top"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #4b4b4b; font-size: 16px; line-height: 23px; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
<strong>Alles für den erfolgreichen Start!</strong></p></td>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td valign="top" height="17"> </td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td valign="top">
|
||||
<table cellpadding="0" cellspacing="0" border="0" align="left" width="48%"
|
||||
class="column-left-table" style="margin-bottom: 24px">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="middle" width="18%"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/icon-setup-wizard.gif"
|
||||
width="44" height="34"></td>
|
||||
<td valign="top" width="3%"> </td>
|
||||
<td valign="top" width="79%"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #4b4b4b; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
Verbinden Sie E-Mail Postfächer von anderen
|
||||
E-Mail-Anbietern mit
|
||||
Ihrem Telekom Mail Postfach.<br><a
|
||||
class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://email.t-online.de/prefs?a=inboxsettings.emcaccount"
|
||||
target="_blank"
|
||||
href="https://email.t-online.de/prefs?a=inboxsettings.emcaccount"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #0090c4; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; text-decoration: none;">E-Mail
|
||||
Postfach verbinden</a>.</p></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table cellpadding="0" cellspacing="0" border="0" align="right" width="48%"
|
||||
class="column-right-table">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="middle" width="18%"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/icon-speicherdauer.gif"
|
||||
width="40" height="33"></td>
|
||||
<td valign="top" width="3%"> </td>
|
||||
<td valign="top" width="79%"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #4b4b4b; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
Konfigurieren Sie die individuelle <a
|
||||
class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://email.t-online.de/pr?a=globalsettings.expire"
|
||||
target="_blank"
|
||||
href="https://email.t-online.de/pr?a=globalsettings.expire"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #0090c4; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; text-decoration: none;">Speicherdauer</a>
|
||||
Ihrer E-Mails jederzeit und bequem im E-Mail Center.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" style="line-height: 0; font-size: 0;" height="24"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
<td valign="top" bgcolor="#FBFBFB">
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%"
|
||||
style="border: 1px solid #d0d0d0;">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top" height="25" colspan="3"
|
||||
style="line-height: 0; font-size: 0">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" width="30"></td>
|
||||
<td valign="top">
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%"
|
||||
class="handbook-table">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="middle">
|
||||
<table cellpadding="0" cellspacing="0" border="0"
|
||||
width="100%">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top" width="46"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/icon-email-handbuch.gif"
|
||||
width="46" height="57"
|
||||
style="display: block"></td>
|
||||
<td valign="top" width="21"> </td>
|
||||
<td valign="middle" height="57"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #4b4b4b; font-size: 14px; line-height: 20px; padding: 0; Margin-top: 0; Margin-bottom: 0; letter-spacing: 0.01em;">
|
||||
Alles rund um unser E-Mail Center finden Sie
|
||||
in unserem praktischen<br><a
|
||||
class="cmp_parsed_url"
|
||||
cmp_parsed_url="http://www.t-online.de/email/handbuch"
|
||||
target="_blank"
|
||||
href="http://www.t-online.de/email/handbuch"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #0090c4; font-size: 14px; line-height: 20px; text-decoration: none; letter-spacing: 0.01em;">E-Mail-Handbuch</a>
|
||||
im PDF-Format zum Herunterladen.</p></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
<td valign="top" width="30"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" height="27" colspan="3"
|
||||
style="line-height: 0; font-size: 0">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" style="line-height: 0; font-size: 0;" height="15"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
<td valign="top" class="footer-icon-bar">
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="21%" align="left"
|
||||
class="column-1">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top" align="center"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://kundencenter.telekom.de"
|
||||
target="_blank"
|
||||
href="https://kundencenter.telekom.de"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/icon-kundencenter.gif"
|
||||
style="display: block;" width="38" height="38"
|
||||
border="0"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="center" height="4"
|
||||
style="line-height: 0; font-size: 0;"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="center"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://kundencenter.telekom.de"
|
||||
target="_blank"
|
||||
href="https://kundencenter.telekom.de"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size: 11px; line-height: 17px; text-decoration: none"><strong>Kundencenter</strong></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="31%" align="left"
|
||||
class="column-2">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top" align="center"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="http://www.telekom.de/hilfe/festnetz-internet-tv/e-mail"
|
||||
target="_blank"
|
||||
href="http://www.telekom.de/hilfe/festnetz-internet-tv/e-mail"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/icon-hilfe.gif"
|
||||
style="display: block;" width="38" height="38"
|
||||
border="0"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="center" height="4"
|
||||
style="line-height: 0; font-size: 0;"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="center"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="http://www.telekom.de/hilfe/festnetz-internet-tv/e-mail"
|
||||
target="_blank"
|
||||
href="http://www.telekom.de/hilfe/festnetz-internet-tv/e-mail"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size: 11px; line-height: 17px; text-decoration: none"><strong>E-Mail-Hilfe</strong></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="23%" align="left"
|
||||
class="column-3">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top" align="center"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://www.telekom.de/magentacloud"
|
||||
target="_blank"
|
||||
href="https://www.telekom.de/magentacloud"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/icon-magentacloud.gif"
|
||||
style="display: block;" width="38" height="38"
|
||||
border="0"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="center" height="4"
|
||||
style="line-height: 0; font-size: 0;"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="center"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://www.telekom.de/magentacloud"
|
||||
target="_blank"
|
||||
href="https://www.telekom.de/magentacloud"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size: 11px; line-height: 17px; text-decoration: none"><strong>MagentaCLOUD</strong></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="20%" align="right"
|
||||
class="column-4">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top" align="center" height="4"
|
||||
style="line-height: 0; font-size: 0;"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="center"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="http://t-online.de"
|
||||
target="_blank"
|
||||
href="http://t-online.de"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/icon-tonline.gif"
|
||||
style="display: block;" width="30" height="30"
|
||||
border="0"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="center" height="8"
|
||||
style="line-height: 0; font-size: 0;"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="center"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="http://t-online.de"
|
||||
target="_blank" href="http://t-online.de"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size: 11px; line-height: 17px; text-decoration: none"><strong>T-Online.de</strong></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" align="left" valign="top" height="15"
|
||||
style="line-height: 0; font-size: 0;">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td valign="top" height="16" style="border-top: 1px solid #d0d0d0;"> </td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td valign="top" align="right">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="middle"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://kommunikationsdienste.t-online.de/email-made-in-germany/"
|
||||
target="_blank"
|
||||
href="https://kommunikationsdienste.t-online.de/email-made-in-germany/"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/emig.png"
|
||||
style="display: block;" width="33" height="21"
|
||||
border="0"></a></td>
|
||||
<td valign="top" width="8" style="line-height: 0; font-size: 0"> </td>
|
||||
<td valign="top"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #262626; font-size: 12px; line-height: 16px; padding: 0; Margin-top: 0; Margin-bottom: 0; letter-spacing: 0.01em;">
|
||||
<strong>E-Mail made in Germany</strong></p></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" valign="top" height="12" style="font-size: 0; line-height: 0">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td align="left" valign="middle" height="30"
|
||||
style="border-bottom: 1px solid #d0d0d0; border-top: 1px solid #d0d0d0;"
|
||||
class="copyright-meta-nav">
|
||||
<table cellpadding="0" cellspacing="0" border="0" align="left" class="column-1">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td align="left" valign="middle"><p
|
||||
style="color:#4b4b4b; font-family: 'Arial', Helvetica, sans-serif; font-size:12px; line-height: 20px; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
© Telekom Deutschland GmbH</p></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table cellpadding="0" cellspacing="0" border="0" align="right" class="column-2">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td align="right" valign="middle"
|
||||
style="color:#4b4b4b; font-family: 'Arial', Helvetica, sans-serif; font-size:12px; line-height: 20px;">
|
||||
<a class="cmp_parsed_url" cmp_parsed_url="https://www.telekom.de/hilfe"
|
||||
target="_blank" href="https://www.telekom.de/hilfe"
|
||||
style="color:#0090c4; font-family: 'Arial', Helvetica, sans-serif; font-size:12px; line-height: 20px; text-decoration: none">Hilfe</a> |
|
||||
<a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://www.telekom.de/kontakt" target="_blank"
|
||||
href="https://www.telekom.de/kontakt"
|
||||
style="color:#0090c4; font-family: 'Arial', Helvetica, sans-serif; font-size:12px; line-height: 20px; text-decoration: none">Kontakt</a> |
|
||||
<a class="cmp_parsed_url"
|
||||
cmp_parsed_url="http://www.telekom.de/pflichtangaben" target="_blank"
|
||||
href="http://www.telekom.de/pflichtangaben"
|
||||
style="color:#0090c4; font-family: 'Arial', Helvetica, sans-serif; font-size:12px; line-height: 20px; text-decoration: none">Pflichtangaben</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" align="left" valign="top" height="20"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<br><br>
|
||||
<b>{{ $greetings }}</b> <br><b>Ihr Team von STERN TOURS</b>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</center>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" class="force-full-width" bgcolor="#f8f8f8">
|
||||
<tr>
|
||||
<td style="color:#7B7B7E; font-size:14px;">
|
||||
<br>
|
||||
STERN TOURS GmbH | Emser Straße 3 | 10719 Berlin<br>
|
||||
Tel: +49 (0) 30 700 94 100 | Fax: +49 (0) 30 700 94 1044 | stern@sterntours.de<br>
|
||||
<br>
|
||||
<a href="https://www.sterntours.de" style="color: #7B7B7E; text-decoration: underline;">www.sterntours.de</a>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#bbbbbb; font-size:12px; line-height: 14px;">
|
||||
<br>
|
||||
Geschäftsführer: Thomas Stern | Registergericht: Amtsgericht Charlottenburg | Registernummer: HRB 67111<br>
|
||||
Steuernummer: 27/545/30703 | UST-Ident.-Nr.: DE192609253 | Finanzamt: Wilmersdorf<br>
|
||||
© 2018 All Rights Reserved
|
||||
<br>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
<tr>
|
||||
<td height="30"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||
|
|
@ -7,7 +7,6 @@
|
|||
<title>mein STERN TOURS</title>
|
||||
|
||||
<style type="text/css">
|
||||
@import url(https://fonts.googleapis.com/css?family=Roboto);
|
||||
img {
|
||||
max-width: 600px;
|
||||
outline: none;
|
||||
|
|
@ -62,38 +61,7 @@
|
|||
.force-full-width {
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
|
||||
<style type="text/css" media="screen">
|
||||
@media screen {
|
||||
/*Thanks Outlook 2013! http://goo.gl/XLxpyl*/
|
||||
td, h1, h2, h3 {
|
||||
font-family: 'Roboto', 'Helvetica Neue', 'Arial', 'sans-serif' !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<style type="text/css" media="only screen and (max-width: 480px)">
|
||||
/* Mobile styles */
|
||||
@media only screen and (max-width: 480px) {
|
||||
|
||||
table[class="w320"] {
|
||||
width: 320px !important;
|
||||
}
|
||||
|
||||
}
|
||||
</style>
|
||||
<!--[if mso]>
|
||||
<style type="text/css">
|
||||
body, table, td {
|
||||
font-family: Helvetica, Arial, sans-serif !important;
|
||||
}
|
||||
</style>
|
||||
<![endif]-->
|
||||
|
||||
|
||||
</head>
|
||||
<body class="body" style="padding:0; margin:0; display:block; background:#f8f8f8; -webkit-text-size-adjust:none" bgcolor="#f8f8f8">
|
||||
|
||||
|
|
|
|||
31
resources/views/emails/auth_plain.blade.php
Normal file
31
resources/views/emails/auth_plain.blade.php
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{{ $salutation }}
|
||||
|
||||
{{ $copy1line }}
|
||||
|
||||
{{ $url }}
|
||||
|
||||
{{ $copy2line }}
|
||||
|
||||
{{ $url }}
|
||||
{{ $greetings }}
|
||||
|
||||
Ihr Team von STERN TOURS
|
||||
|
||||
|
||||
---------------
|
||||
---------------
|
||||
|
||||
STERN TOURS GmbH
|
||||
Emser Straße 3
|
||||
10719 Berlin
|
||||
Tel: +49 (0) 30 700 94 100
|
||||
Fax: +49 (0) 30 700 94 1044
|
||||
stern@sterntours.de
|
||||
www.sterntours.de
|
||||
|
||||
---------------
|
||||
|
||||
Geschäftsführer: Thomas Stern | Registergericht: Amtsgericht Charlottenburg | Registernummer: HRB 67111
|
||||
Steuernummer: 27/545/30703 | UST-Ident.-Nr.: DE192609253 | Finanzamt: Wilmersdorf
|
||||
Datenschutzerklärung
|
||||
{{route('data_protected')}}
|
||||
|
|
@ -5,40 +5,33 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>mein STERN TOURS</title>
|
||||
|
||||
<style type="text/css">
|
||||
@import url(https://fonts.googleapis.com/css?family=Roboto);
|
||||
img {
|
||||
max-width: 600px;
|
||||
outline: none;
|
||||
text-decoration: none;
|
||||
-ms-interpolation-mode: bicubic;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
border: 0;
|
||||
outline: none;
|
||||
color: #5f8155;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color:#e5aa30;
|
||||
}
|
||||
|
||||
a img {
|
||||
border: none;
|
||||
}
|
||||
|
||||
td, h1, h2, h3 {
|
||||
font-family: "Roboto", Helvetica, Arial, sans-serif;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
td {
|
||||
text-align: center;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
body {
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-webkit-text-size-adjust: none;
|
||||
|
|
@ -46,14 +39,12 @@
|
|||
height: 100%;
|
||||
color: #37302d;
|
||||
background: #ffffff;
|
||||
font-size: 15px;
|
||||
line-height: 26px
|
||||
font-size: 14px;
|
||||
line-height: 20px
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse !important;
|
||||
}
|
||||
|
||||
.headline {
|
||||
color: #5f8155;
|
||||
font-size: 16px;
|
||||
|
|
@ -62,38 +53,7 @@
|
|||
.force-full-width {
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
|
||||
<style type="text/css" media="screen">
|
||||
@media screen {
|
||||
/*Thanks Outlook 2013! http://goo.gl/XLxpyl*/
|
||||
td, h1, h2, h3 {
|
||||
font-family: 'Roboto', 'Helvetica Neue', 'Arial', 'sans-serif' !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<style type="text/css" media="only screen and (max-width: 480px)">
|
||||
/* Mobile styles */
|
||||
@media only screen and (max-width: 480px) {
|
||||
|
||||
table[class="w320"] {
|
||||
width: 320px !important;
|
||||
}
|
||||
|
||||
}
|
||||
</style>
|
||||
<!--[if mso]>
|
||||
<style type="text/css">
|
||||
body, table, td {
|
||||
font-family: Helvetica, Arial, sans-serif !important;
|
||||
}
|
||||
</style>
|
||||
<![endif]-->
|
||||
|
||||
|
||||
</head>
|
||||
<body class="body" style="padding:0; margin:0; display:block; background:#f8f8f8; -webkit-text-size-adjust:none" bgcolor="#f8f8f8">
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
<title>mein STERN TOURS</title>
|
||||
|
||||
<style type="text/css">
|
||||
@import url(https://fonts.googleapis.com/css?family=Roboto);
|
||||
img {
|
||||
max-width: 600px;
|
||||
outline: none;
|
||||
|
|
@ -66,33 +65,6 @@
|
|||
|
||||
</style>
|
||||
|
||||
<style type="text/css" media="screen">
|
||||
@media screen {
|
||||
/*Thanks Outlook 2013! http://goo.gl/XLxpyl*/
|
||||
td, h1, h2, h3 {
|
||||
font-family: 'Roboto', 'Helvetica Neue', 'Arial', 'sans-serif' !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<style type="text/css" media="only screen and (max-width: 480px)">
|
||||
/* Mobile styles */
|
||||
@media only screen and (max-width: 480px) {
|
||||
|
||||
table[class="w320"] {
|
||||
width: 320px !important;
|
||||
}
|
||||
|
||||
}
|
||||
</style>
|
||||
<!--[if mso]>
|
||||
<style type="text/css">
|
||||
body, table, td {
|
||||
font-family: Helvetica, Arial, sans-serif !important;
|
||||
}
|
||||
</style>
|
||||
<![endif]-->
|
||||
|
||||
|
||||
</head>
|
||||
<body class="body" style="padding:0; margin:0; display:block; background:#f8f8f8; -webkit-text-size-adjust:none" bgcolor="#f8f8f8">
|
||||
|
|
|
|||
|
|
@ -5,31 +5,25 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>mein STERN TOURS</title>
|
||||
|
||||
<style type="text/css">
|
||||
@import url(https://fonts.googleapis.com/css?family=Roboto);
|
||||
img {
|
||||
max-width: 600px;
|
||||
outline: none;
|
||||
text-decoration: none;
|
||||
-ms-interpolation-mode: bicubic;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
border: 0;
|
||||
outline: none;
|
||||
color: #5f8155;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color:#e5aa30;
|
||||
}
|
||||
|
||||
a img {
|
||||
border: none;
|
||||
}
|
||||
|
||||
td, h1, h2, h3 {
|
||||
font-family: "Roboto", Helvetica, Arial, sans-serif;
|
||||
font-weight: 400;
|
||||
|
|
@ -38,7 +32,6 @@
|
|||
td {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
body {
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-webkit-text-size-adjust: none;
|
||||
|
|
@ -49,11 +42,9 @@
|
|||
font-size: 14px;
|
||||
line-height: 20px
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse !important;
|
||||
}
|
||||
|
||||
.headline {
|
||||
color: #5f8155;
|
||||
font-size: 16px;
|
||||
|
|
@ -62,38 +53,7 @@
|
|||
.force-full-width {
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
|
||||
<style type="text/css" media="screen">
|
||||
@media screen {
|
||||
/*Thanks Outlook 2013! http://goo.gl/XLxpyl*/
|
||||
td, h1, h2, h3 {
|
||||
font-family: 'Roboto', 'Helvetica Neue', 'Arial', 'sans-serif' !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<style type="text/css" media="only screen and (max-width: 480px)">
|
||||
/* Mobile styles */
|
||||
@media only screen and (max-width: 480px) {
|
||||
|
||||
table[class="w320"] {
|
||||
width: 320px !important;
|
||||
}
|
||||
|
||||
}
|
||||
</style>
|
||||
<!--[if mso]>
|
||||
<style type="text/css">
|
||||
body, table, td {
|
||||
font-family: Helvetica, Arial, sans-serif !important;
|
||||
}
|
||||
</style>
|
||||
<![endif]-->
|
||||
|
||||
|
||||
</head>
|
||||
<body class="body" style="padding:0; margin:0; display:block; background:#f8f8f8; -webkit-text-size-adjust:none" bgcolor="#f8f8f8">
|
||||
|
||||
|
|
|
|||
44
resources/views/iq/modal/content.blade.php
Normal file
44
resources/views/iq/modal/content.blade.php
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
{!! Form::open(['url' => $url, 'class' => 'modal-content']) !!}
|
||||
<input type="hidden" name="id" value="{{ $value->id }}">
|
||||
<input type="hidden" name="model" value="{{$data['model']}}">
|
||||
<input type="hidden" name="action" value="{{$data['action']}}">
|
||||
<input type="hidden" name="request" value="{{$data['request']}}">
|
||||
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title">
|
||||
{{$data['title']}}
|
||||
</h5>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">×</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
|
||||
<div class="form-row">
|
||||
<div class="form-group col">
|
||||
<label class="custom-control custom-checkbox float-right">
|
||||
{!! Form::checkbox('active', 1, $value->active, ['class'=>'custom-control-input']) !!}
|
||||
<span class="custom-control-label">{{__('aktiv')}}</span>
|
||||
</label>
|
||||
<label for="name" class="form-label">Name (required)</label>
|
||||
{{ Form::text('name', $value->name, array('placeholder'=>'', 'class'=>'form-control', 'required'=>'true')) }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-row">
|
||||
<div class="form-group col">
|
||||
<label for="identifier" class="form-label">Slug</label>
|
||||
{{ Form::text('identifier', $value->identifier, array('placeholder'=>'', 'class'=>'form-control')) }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group mb-1">
|
||||
<label class="form-label" for="description">Description</label>
|
||||
{{ Form::textarea('description', $value->description, array('class'=>'form-control', 'rows'=>2)) }}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal">close</button>
|
||||
<button type="submit" class="btn btn-primary"><i class="ion ion-md-save"></i> save</button>
|
||||
</div>
|
||||
{!! Form::close() !!}
|
||||
|
||||
32
resources/views/iq/modal/site.blade.php
Normal file
32
resources/views/iq/modal/site.blade.php
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{!! Form::open(['url' => $url, 'class' => 'modal-content']) !!}
|
||||
<input type="hidden" name="id" value="{{ $value->id }}">
|
||||
<input type="hidden" name="model" value="{{$data['model']}}">
|
||||
<input type="hidden" name="action" value="{{$data['action']}}">
|
||||
<input type="hidden" name="request" value="{{$data['request']}}">
|
||||
<input type="hidden" name="name" value="add">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title">
|
||||
{{$data['title']}}
|
||||
</h5>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">×</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
|
||||
@if(!$data['request'])
|
||||
<div class="form-row">
|
||||
<div class="form-group col">
|
||||
<label for="field_id" class="form-label">Reiseführer Seite (required)</label>
|
||||
<select class="selectpicker" name="travel_guide_id" id="travel_guide_id"
|
||||
data-style="btn-light" data-live-search="true" required>
|
||||
{!! \App\Models\TravelGuide::getSiteOptions(0) !!}
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal">close</button>
|
||||
<button type="submit" class="btn btn-primary"><i class="ion ion-md-save"></i> save</button>
|
||||
</div>
|
||||
{!! Form::close() !!}
|
||||
|
||||
45
resources/views/iq/modal/tree-node.blade.php
Normal file
45
resources/views/iq/modal/tree-node.blade.php
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
{!! Form::open(['url' => $url, 'class' => 'modal-content']) !!}
|
||||
<input type="hidden" name="id" value="{{ $value->id }}">
|
||||
<input type="hidden" name="model" value="{{$data['model']}}">
|
||||
<input type="hidden" name="action" value="{{$data['action']}}">
|
||||
<input type="hidden" name="request" value="{!! array_to_json($data['request']) !!}">
|
||||
<input type="hidden" name="tree_id" value="{{$model->id}}">
|
||||
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title">
|
||||
{{$data['title']}}
|
||||
</h5>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">×</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
|
||||
<div class="form-row">
|
||||
<div class="form-group col">
|
||||
<label class="custom-control custom-checkbox float-right">
|
||||
{!! Form::checkbox('active', 1, $value->active, ['class'=>'custom-control-input']) !!}
|
||||
<span class="custom-control-label">{{__('aktiv')}}</span>
|
||||
</label>
|
||||
<label for="name" class="form-label">Name (required)</label>
|
||||
{{ Form::text('name', $value->name, array('placeholder'=>'', 'class'=>'form-control', 'required'=>'true')) }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-row">
|
||||
<div class="form-group col">
|
||||
<label for="identifier" class="form-label">Slug</label>
|
||||
{{ Form::text('identifier', $value->identifier, array('placeholder'=>'', 'class'=>'form-control')) }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group mb-1">
|
||||
<label class="form-label" for="description">Description</label>
|
||||
{{ Form::textarea('description', $value->description, array('class'=>'form-control', 'rows'=>2)) }}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal">close</button>
|
||||
<button type="submit" class="btn btn-primary"><i class="ion ion-md-save"></i> save</button>
|
||||
</div>
|
||||
{!! Form::close() !!}
|
||||
|
||||
|
|
@ -39,6 +39,11 @@
|
|||
<link rel="stylesheet" href="{{ mix('/vendor/libs/dragula/dragula.css') }}">
|
||||
<link rel="stylesheet" href="{{ mix('/vendor/libs/minicolors/minicolors.css') }}">
|
||||
<link rel="stylesheet" href="{{ asset('/vendor/libs/summernote/dist/summernote-bs4.css') }}">
|
||||
<link rel="stylesheet" href="{{ asset('/vendor/libs/nestable/nestable.css') }}">
|
||||
|
||||
<link rel="stylesheet" href="{{ asset('/vendor/css/pages/messages.css') }}">
|
||||
|
||||
|
||||
<!-- Layout helpers -->
|
||||
<script src="{{ mix('/vendor/js/layout-helpers.js') }}"></script>
|
||||
|
||||
|
|
@ -66,6 +71,12 @@
|
|||
border: 1px solid rgba(24, 28, 33, 0.20);
|
||||
|
||||
}
|
||||
.dd-content-link {
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
display: inline-block;
|
||||
max-width: 7rem;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
|
|
@ -106,6 +117,12 @@
|
|||
|
||||
@yield('layout-content')
|
||||
|
||||
<div class="modal fade" id="modals-load-content">
|
||||
<div class="modal-dialog modal-lg">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Core scripts -->
|
||||
<script src="{{ mix('/vendor/libs/popper/popper.js') }}"></script>
|
||||
<script src="{{ mix('/vendor/js/bootstrap.js') }}"></script>
|
||||
|
|
@ -122,6 +139,7 @@
|
|||
<script src="{{ mix('/vendor/libs/bootstrap-datepicker/bootstrap-datepicker.js') }}"></script>
|
||||
<script src="{{asset('/js/bootstrap-datepicker.de.min.js')}}"></script>
|
||||
<script src="{{ mix('/vendor/libs/dragula/dragula.js') }}"></script>
|
||||
<script src="{{asset('/vendor/libs/nestable/nestable.js')}}"></script>
|
||||
<script src="{{ mix('/vendor/libs/minicolors/minicolors.js') }}"></script>
|
||||
<script src="{{ asset('/vendor/libs/summernote/dist/summernote-bs4.js') }}"></script>
|
||||
|
||||
|
|
|
|||
|
|
@ -125,12 +125,17 @@
|
|||
</li>
|
||||
@endif
|
||||
@if(Auth::user()->isPermission('cms-tg'))
|
||||
<li class="sidenav-item{{ Request::is('cms/travel_guide/*') ? ' open' : '' }}">
|
||||
<li class="sidenav-item{{ Request::is('cms/travel_guide/*') ? ' open' : '' }} {{ Request::is('iq/content/tree/*') ? ' open' : '' }}">
|
||||
<a href="javascript:void(0)" class="sidenav-link sidenav-toggle">
|
||||
<i class="sidenav-icon ion ion-md-map"></i>
|
||||
<div>Reiseführer</div>
|
||||
</a>
|
||||
<ul class="sidenav-menu">
|
||||
<li class="sidenav-item{{ Request::is('iq/content/tree/*') ? ' active' : '' }}">
|
||||
<a href="{{ route('iq_content_tree_index') }}" class="sidenav-link"><i class="sidenav-icon ion ion-md-list"></i><div>Reiseführer Tree</div></a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="sidenav-item{{ Request::is('cms/travel_guide/page') ? ' active' : '' }}">
|
||||
<a href="{{ route('cms_travel_guide_page') }}" class="sidenav-link"><i class="sidenav-icon ion ion-md-list-box"></i><div>Reiseführer Seiten</div></a>
|
||||
</li>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue