@foreach(['home' => ['Home page', 'documents'], 'articles' => ['Articles', 'book'], 'mode' => ['Site mode', 'globe']] as $id => $meta)
@endforeach
{{-- =============================== HOME PAGE =============================== --}}
Section headings
The heading shown above each block on the home page.
Feature cards
The six-up grid describing the platform. Leave a title blank to remove that card.
Testimonials
Short quotes shown near the bottom of the page. Leave a quote blank to remove it.
FAQ
Questions and answers in the accordion. Leave a question blank to remove it.
{{-- =============================== ARTICLES =============================== --}}
New article
Publish resource posts and announcements to the public site.
All articles
{{ $articles->total() }} total
@if($articles->count())
{{ $articles->links() }}
@else
No articles yet.
@endif
{{-- =============================== SITE MODE =============================== --}}
Site mode
Control what the public sees. The admin console and mobile API stay online in every mode.
{{ \Illuminate\Support\Str::headline($siteMode) }}
@endsection