style: fix html alignment, etc.
This commit is contained in:
parent
1c34087354
commit
b5293a41a3
7 changed files with 329 additions and 324 deletions
|
@ -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')
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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 -->
|
||||||
|
|
|
@ -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>
|
||||||
|
|
6
resources/views/pages/template.blade.php
Normal file
6
resources/views/pages/template.blade.php
Normal 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
|
Loading…
Reference in a new issue