diff options
| author | horus | 2020-04-19 18:28:17 +0200 |
|---|---|---|
| committer | horus | 2020-04-19 18:28:17 +0200 |
| commit | ea7f3c9c9ca72ee6efa9c345506ea9c92cdf1691 (patch) | |
| tree | e4f31cad2fa3bab448ebd604841e7a4e57ab8bba /resources/views/list.blade.php | |
| parent | bf823c5063b5ad863e7e7cc313fb1406ddd14a98 (diff) | |
| download | curious-ea7f3c9c9ca72ee6efa9c345506ea9c92cdf1691.tar.gz | |
Add footer with about page.
Diffstat (limited to 'resources/views/list.blade.php')
| -rw-r--r-- | resources/views/list.blade.php | 46 |
1 files changed, 27 insertions, 19 deletions
diff --git a/resources/views/list.blade.php b/resources/views/list.blade.php index 1f6fc72..f067e2f 100644 --- a/resources/views/list.blade.php +++ b/resources/views/list.blade.php @@ -1,28 +1,32 @@ @extends('layouts.app') @section('styles') + +@include ('layouts.footer-style') + @if ( 0 != $count ) -html { - height: inherit; -} -.hn { - display: inline-block; - font-size: inherit; - height: 1em; - overflow: visible; - vertical-align: -.125em; - fill: #ff6600; -} + html { + height: inherit; + } + .hn { + display: inline-block; + font-size: inherit; + height: 1em; + overflow: visible; + vertical-align: -.125em; + fill: #ff6600; + } -.rss-link > svg { - display: inline-block; - font-size: inherit; - height: 1em; - overflow: visible; - vertical-align: -.125em; - fill: #f59436; -} + .rss-link > svg { + display: inline-block; + font-size: inherit; + height: 1em; + overflow: visible; + vertical-align: -.125em; + fill: #f59436; + } @endif + @endsection @section('content') @@ -150,3 +154,7 @@ html { </div> @endsection + +@section ('footer') + @include ('layouts.footer') +@endsection |
