11 lines
242 B
PHP
11 lines
242 B
PHP
|
|
@extends('layouts.guest')
|
||
|
|
|
||
|
|
@section('title', 'Home')
|
||
|
|
|
||
|
|
@section('content')
|
||
|
|
<section id="blog-head" class="bubble-panel">
|
||
|
|
<h1>{{ config('blog.publishing_name') }}<h1>
|
||
|
|
<p><i>{{ config('blog.subheading') }}</i></p>
|
||
|
|
</section>
|
||
|
|
@endsection
|