style: fix html alignment, etc.

This commit is contained in:
floppydiskette 2023-07-03 19:07:31 +01:00
parent 1c34087354
commit b5293a41a3
No known key found for this signature in database
7 changed files with 329 additions and 324 deletions

View file

@ -13,7 +13,7 @@
<div id="pagebody"> <div id="pagebody">
<div id="content"> <div id="content">
@yield('content') @yield('content')
</div> <!-- content --> </div> <!-- content -->
<div id="footer" class="pagefooter"> <div id="footer" class="pagefooter">
@include('includes.footer') @include('includes.footer')

View file

@ -2,7 +2,7 @@
@section('title', 'calculators') @section('title', 'calculators')
@section('description', 'C a l c u l a t o r s.') @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>
<h2>Pictures</h2> <h2>Pictures</h2>
<p>Click images to view full size</p> <p>Click images to view full size</p>

View file

@ -2,7 +2,7 @@
@section('title', 'computers') @section('title', 'computers')
@section('description', 'Computers I own or have owned.') @section('description', 'Computers I own or have owned.')
@section('content') @section('content')
<table class="computers" border="0"> <table class="computers" border="0">
<tr> <tr>
<!-- Custom Build --> <!-- Custom Build -->
<td class="computer"> <td class="computer">
@ -318,6 +318,5 @@
<p>TBD</p> <p>TBD</p>
</td> </td>
</tr> </tr>
</tr>
</table> </table>
@stop @stop

View file

@ -2,7 +2,7 @@
@section('title', 'home') @section('title', 'home')
@section('description', 'This is the personal homepage of floppydisk.') @section('description', 'This is the personal homepage of floppydisk.')
@section('content') @section('content')
<p>Hi!</p> <p>Hi!</p>
<p>This is the personal homepage of floppydisk.</p> <p>This is the personal homepage of floppydisk.</p>
<!-- Last.fm --> <!-- Last.fm -->

View file

@ -3,7 +3,7 @@
@section('title', 'projects') @section('title', 'projects')
@section('description', 'My projects') @section('description', 'My projects')
@section('content') @section('content')
@foreach ($categories as $category) @foreach ($categories as $category)
<h1>{{ $category['name']}}</h1> <h1>{{ $category['name']}}</h1>
@foreach ($category['projects'] as $project) @foreach ($category['projects'] as $project)
<div> <div>

View file

@ -0,0 +1,6 @@
@extends('layouts.default')
@section('title', 'Page Title')
@section('description', 'Page description goes here')
@section('content')
<p>page content</p>
@stop