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="content">
@yield('content')
@yield('content')
</div> <!-- content -->
<div id="footer" class="pagefooter">
@include('includes.footer')

View file

@ -2,7 +2,7 @@
@section('title', 'calculators')
@section('description', 'C a l c u l a t o r s.')
@section('content')
<h1>CASIO fx-CG50</h1>
<h1>CASIO fx-CG50</h1>
<p>TBD</p>
<h2>Pictures</h2>
<p>Click images to view full size</p>

View file

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

View file

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

View file

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