mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-12 15:56:56 +02:00
18 lines
293 B
Plaintext
18 lines
293 B
Plaintext
@layout('layouts/main')
|
|
@set('title', 'Arthur - Portfolio')
|
|
|
|
@section('body')
|
|
|
|
@include('partials/nav')
|
|
@include('partials/header')
|
|
|
|
<main>
|
|
@include('partials/main/about')
|
|
@include('partials/main/projects')
|
|
@include('partials/main/contact')
|
|
</main>
|
|
|
|
@include('partials/footer')
|
|
|
|
@end
|