11 lines
275 B
PHP
11 lines
275 B
PHP
<?php $headerTemplate = 'Blog Header'; ?>
|
|
@extends('layouts.site', ['header' => 'partials.header', 'footer' => 'partials.footer'])
|
|
|
|
@section('title', 'Anasayfa')
|
|
|
|
@section('content')
|
|
@include('templates.neler-yapariz.hero')
|
|
|
|
@include('templates.home.contact')
|
|
@endsection
|