2024-09-19 12:53:52 +02:00
|
|
|
@extends('linkstack.layout')
|
2024-09-24 16:13:17 +02:00
|
|
|
|
2024-09-19 12:53:52 +02:00
|
|
|
@section('content')
|
2024-09-24 16:13:17 +02:00
|
|
|
@push('linkstack-head')
|
|
|
|
@include('linkstack.modules.meta')
|
|
|
|
@include('linkstack.modules.assets')
|
|
|
|
@endpush
|
|
|
|
|
2024-09-19 12:53:52 +02:00
|
|
|
@push('linkstack-head-end')
|
2024-09-24 16:13:17 +02:00
|
|
|
@foreach($information as $info)
|
|
|
|
@include('linkstack.modules.theme')
|
|
|
|
@endforeach
|
|
|
|
@endpush
|
|
|
|
|
|
|
|
@push('linkstack-body-start')
|
|
|
|
@include('linkstack.modules.admin-bar')
|
|
|
|
@include('linkstack.modules.share-button')
|
|
|
|
@include('linkstack.modules.report-icon')
|
|
|
|
@endpush
|
|
|
|
|
|
|
|
@push('linkstack-content')
|
|
|
|
@foreach($information as $info)
|
|
|
|
@include('linkstack.elements.avatar')
|
|
|
|
@include('linkstack.elements.heading')
|
|
|
|
@include('linkstack.elements.bio')
|
|
|
|
@endforeach
|
|
|
|
@include('linkstack.elements.icons')
|
|
|
|
@include('linkstack.elements.buttons')
|
|
|
|
@yield('content')
|
|
|
|
@include('linkstack.modules.footer')
|
2024-09-19 12:53:52 +02:00
|
|
|
@endpush
|
|
|
|
@endsection
|