2023-05-23 00:10:00 +00:00
|
|
|
@extends('template.'.config('settings.template').'.content.master')
|
2023-03-20 10:40:26 +00:00
|
|
|
@section('head')
|
|
|
|
<title>{{$content->title}}</title>
|
|
|
|
@stop
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
<div class="nav-backed-header parallax">
|
|
|
|
<div class="container" style="height: 55px;">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="main" role="main">
|
|
|
|
<div id="content" class="content full">
|
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
<h1>{{$content->title}}</h1>
|
|
|
|
|
|
|
|
|
|
|
|
<p class="mt-3 mb-4">
|
2023-06-29 11:14:57 +00:00
|
|
|
{{-- $content->beschreibung --}}
|
2023-03-20 10:40:26 +00:00
|
|
|
</p>
|
|
|
|
|
2023-06-29 11:14:57 +00:00
|
|
|
<p><time datetime="{{$content->datum}}">Datum</time></p>
|
2023-03-20 10:40:26 +00:00
|
|
|
|
2023-06-29 11:14:57 +00:00
|
|
|
<!-- full date -->
|
|
|
|
<p>{{$content->datum}}</p>
|
2023-03-20 10:40:26 +00:00
|
|
|
|
2023-06-29 11:14:57 +00:00
|
|
|
<!-- formatted date -->
|
|
|
|
<p>Formatted Date: {{date("d.m.Y", strtotime($content->datum))}}</p>
|
2023-03-20 10:40:26 +00:00
|
|
|
|
2023-06-29 11:14:57 +00:00
|
|
|
<!-- get only year -->
|
|
|
|
<p>Year: {{date("Y", strtotime($content->datum))}}</p>
|
|
|
|
<p>Year: {{date("y", strtotime($content->datum))}}</p>
|
|
|
|
|
|
|
|
<!-- get only month -->
|
|
|
|
<p>Month: {{date("m", strtotime($content->datum))}}</p>
|
|
|
|
|
|
|
|
<!-- get only day -->
|
|
|
|
<p>Day: {{date("d", strtotime($content->datum))}}</p>
|
|
|
|
|
|
|
|
<!-- get only hour -->
|
|
|
|
<p>Hour: {{date("H", strtotime($content->datum))}}</p>
|
|
|
|
|
|
|
|
<!-- get only minutes -->
|
|
|
|
<p>Minute: {{date("i", strtotime($content->datum))}}</p>
|
|
|
|
|
|
|
|
<!-- get only seconds -->
|
|
|
|
<p>Second: {{date("s", strtotime($content->datum))}}</p>
|
2023-03-20 10:40:26 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|