diff options
author | Frankie B <git@diskfloppy.me> | 2023-06-14 23:50:57 +0100 |
---|---|---|
committer | Frankie B <git@diskfloppy.me> | 2023-06-14 23:50:57 +0100 |
commit | a3be1eb5b839c11fbaa0bd11194c130cdfdeb2b2 (patch) | |
tree | 00d1edfcdcad765b3469a3ac94b59a4917d6e2f2 /resources/views | |
parent | c7a1b41a19c9091c9d09a70d7003eaa28813eee1 (diff) |
feat: fix page titles
Diffstat (limited to 'resources/views')
-rw-r--r-- | resources/views/pages/calculators.blade.php | 4 | ||||
-rw-r--r-- | resources/views/pages/computers.blade.php | 4 | ||||
-rw-r--r-- | resources/views/pages/projects.blade.php | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/resources/views/pages/calculators.blade.php b/resources/views/pages/calculators.blade.php index 96de8d3..5da77ae 100644 --- a/resources/views/pages/calculators.blade.php +++ b/resources/views/pages/calculators.blade.php @@ -1,6 +1,6 @@ @extends('layouts.default') -@section('title', 'test') -@section('description', 'This is the personal homepage of floppydisk.') +@section('title', 'calculators') +@section('description', 'C a l c u l a t o r s.') @section('content') <h1>CASIO fx-CG50</h1> <p>TBD</p> diff --git a/resources/views/pages/computers.blade.php b/resources/views/pages/computers.blade.php index d85cb15..44a5a95 100644 --- a/resources/views/pages/computers.blade.php +++ b/resources/views/pages/computers.blade.php @@ -1,6 +1,6 @@ @extends('layouts.default') -@section('title', 'test') -@section('description', 'This is the personal homepage of floppydisk.') +@section('title', 'computers') +@section('description', 'Computers I own or have owned.') @section('content') <table class="computers" border="0"> <tr> diff --git a/resources/views/pages/projects.blade.php b/resources/views/pages/projects.blade.php index 8280fef..b815511 100644 --- a/resources/views/pages/projects.blade.php +++ b/resources/views/pages/projects.blade.php @@ -1,7 +1,7 @@ <?php $categories = app('config')->get('projects'); ?> @extends('layouts.default') -@section('title', 'test') -@section('description', 'This is the personal homepage of floppydisk.') +@section('title', 'projects') +@section('description', 'My projects') @section('content') @foreach ($categories as $category) <h1>{{ $category['name']}}</h1> |