forked from WemXPro/theme-tailwind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.blade.php
More file actions
20 lines (17 loc) · 726 Bytes
/
page.blade.php
File metadata and controls
20 lines (17 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@extends(Theme::wrapper())
@section('title', $page->title)
@section('header')
<link rel="stylesheet" href="{{ Theme::get('Default')->assets }}assets/css/typography.min.css">
@endsection
@section('container')
<main class="pb-16 pt-8 lg:pb-24 lg:pt-16">
<article class="format format-sm sm:format-base lg:format-lg format-blue dark:format-invert mx-auto w-full max-w-2xl">
<header class="not-format mb-4 lg:mb-6">
<h1 class="mb-4 text-3xl font-extrabold leading-tight text-gray-900 dark:text-white lg:mb-6 lg:text-4xl">
{{ $page->title }}
</h1>
</header>
{!! $page->content !!}
</article>
</main>
@endsection