21 lines
605 B
PHP
21 lines
605 B
PHP
@extends('layout.app')
|
|
@section('scripts')
|
|
<link rel="stylesheet" href="{{ asset('/css/imprint/imprint.css') }}">
|
|
@endsection
|
|
|
|
@section('content')
|
|
<img class="content-img" src="{{ asset('/Bilder/ernsthaft.jpg') }}" alt="{{ __('app.imprint.alt') }}">
|
|
<img src="{{ asset('/Bilder/deutsch.gif') }}" class="funny-gift" alt="funny">
|
|
<h1>{{ __('app.imprint.title') }}</h1>
|
|
<br />
|
|
<p>{!! __('app.imprint.content') !!}</p>
|
|
<br />
|
|
Chaos Computer Club Essen / foobar e.V.<br />
|
|
C3Gov<br />
|
|
Sibyllastr. 9<br />
|
|
45136 Essen<br />
|
|
Germany<br />
|
|
<br />
|
|
<br />
|
|
@endsection
|