mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
51 lines
1.7 KiB
PHP
51 lines
1.7 KiB
PHP
@extends('layouts.public.main')
|
|
|
|
@section('content')
|
|
<!-- Header -->
|
|
|
|
<!-- Banner -->
|
|
<section id="banner">
|
|
|
|
<!-- Include Banner -->
|
|
@include('layouts.public.banner')
|
|
|
|
</section>
|
|
|
|
<!-- News -->
|
|
<section class="wrapper style2" id="news">
|
|
@include('layouts.public.news')
|
|
</section>
|
|
|
|
<!-- Introduction -->
|
|
<section class="wrapper style1 special" id="activity">
|
|
|
|
<!-- Include Introduction -->
|
|
@include('layouts.public.introduction')
|
|
|
|
</section>
|
|
|
|
<!-- Activités -->
|
|
<section class="wrapper alt style6">
|
|
|
|
<!-- Include Activity -->
|
|
@include('layouts.public.activity')
|
|
|
|
</section>
|
|
|
|
<!-- Photos -->
|
|
<section class="wrapper style3 special" id="picture">
|
|
|
|
<!-- Include Picture -->
|
|
@include('layouts.public.picture')
|
|
|
|
</section>
|
|
|
|
<!-- CTA -->
|
|
<section id="cta" class="wrapper">
|
|
<div class="inner">
|
|
<h2>{{ App\Config::getData('text_public_cta')}}<a class="badge badge-primary edit-btn" href="/admin/public/edit/text_public_cta" style="display: none;"><i class="fa fa-pencil" aria-hidden="true"></i></a></h2>
|
|
<a href="{{ App\Config::getData('escadron_direct_googlemap_link')}}" class="button fit primary">{{ App\Config::getData('escadron_address')}} - {{ App\Config::getData('escadron_phone')}}</a>
|
|
</div>
|
|
</section>
|
|
|
|
@endsection |