mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
12 lines
267 B
PHP
12 lines
267 B
PHP
@extends('_layouts.master')
|
|
|
|
@section('body')
|
|
<div class="markdown">
|
|
@if ($page->category)
|
|
<div class="font-semibold text-slate-light text-base uppercase tracking-wide mb-2">{{ $page->category }}</div>
|
|
@endif
|
|
|
|
@yield('content')
|
|
</div>
|
|
@endsection
|