feat: fix page titles
This commit is contained in:
parent
c7a1b41a19
commit
a3be1eb5b8
3 changed files with 6 additions and 6 deletions
|
@ -1,6 +1,6 @@
|
||||||
@extends('layouts.default')
|
@extends('layouts.default')
|
||||||
@section('title', 'test')
|
@section('title', 'calculators')
|
||||||
@section('description', 'This is the personal homepage of floppydisk.')
|
@section('description', 'C a l c u l a t o r s.')
|
||||||
@section('content')
|
@section('content')
|
||||||
<h1>CASIO fx-CG50</h1>
|
<h1>CASIO fx-CG50</h1>
|
||||||
<p>TBD</p>
|
<p>TBD</p>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
@extends('layouts.default')
|
@extends('layouts.default')
|
||||||
@section('title', 'test')
|
@section('title', 'computers')
|
||||||
@section('description', 'This is the personal homepage of floppydisk.')
|
@section('description', 'Computers I own or have owned.')
|
||||||
@section('content')
|
@section('content')
|
||||||
<table class="computers" border="0">
|
<table class="computers" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?php $categories = app('config')->get('projects'); ?>
|
<?php $categories = app('config')->get('projects'); ?>
|
||||||
@extends('layouts.default')
|
@extends('layouts.default')
|
||||||
@section('title', 'test')
|
@section('title', 'projects')
|
||||||
@section('description', 'This is the personal homepage of floppydisk.')
|
@section('description', 'My projects')
|
||||||
@section('content')
|
@section('content')
|
||||||
@foreach ($categories as $category)
|
@foreach ($categories as $category)
|
||||||
<h1>{{ $category['name']}}</h1>
|
<h1>{{ $category['name']}}</h1>
|
||||||
|
|
Loading…
Reference in a new issue