diff options
Diffstat (limited to 'resources/views/includes')
-rw-r--r-- | resources/views/includes/footer.blade.php | 8 | ||||
-rw-r--r-- | resources/views/includes/head.blade.php | 13 | ||||
-rw-r--r-- | resources/views/includes/header.blade.php | 11 |
3 files changed, 32 insertions, 0 deletions
diff --git a/resources/views/includes/footer.blade.php b/resources/views/includes/footer.blade.php new file mode 100644 index 0000000..09dcf38 --- /dev/null +++ b/resources/views/includes/footer.blade.php @@ -0,0 +1,8 @@ +<hr> + <div style="text-align: center;"> + <img src="{{ URL::asset ('images/buttons/browser.gif') }}" alt="Any Damn Browser"> + <a href="https://www.linux.org/"><img src="{{ URL::asset ('images/buttons/linuxnow.gif') }}" alt="Linux NOW!"></a> + <a href="https://www.vim.org/"><img src="{{ URL::asset ('images/buttons/vim.gif') }}" alt="vim"></a> + <a href="http://jigsaw.w3.org/css-validator/check/referer"><img style="border:0;width:88px;height:31px" src="{{ URL::asset ('images/buttons/vcss-blue.gif') }}" alt="Valid CSS!"></a> + <a href=""><img style="border:0;width:88px;height:31px" src="{{ URL::asset ('images/buttons/valid-html401-blue.png') }}" alt="Valid HTML 4.01!"></a><br/> + </div> diff --git a/resources/views/includes/head.blade.php b/resources/views/includes/head.blade.php new file mode 100644 index 0000000..ed4f29e --- /dev/null +++ b/resources/views/includes/head.blade.php @@ -0,0 +1,13 @@ + <!-- Global --> + <meta charset="utf-8"> + <meta property="og:type" content="website"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta name="theme-color" content="#333333"> + <link rel="stylesheet" href="{{ URL::asset ('css/dark.css') }}"/> + + <!-- Page-specific --> + <title>~floppydisk / @yield('title')</title> + <meta property="og:title" content="~floppydisk / @yield('title')"> + <meta property="og:description" content="@yield('description')"> + <meta property="og:image" content="/favicon.png"> + <style>td{padding:0px;}</style> diff --git a/resources/views/includes/header.blade.php b/resources/views/includes/header.blade.php new file mode 100644 index 0000000..37dccbe --- /dev/null +++ b/resources/views/includes/header.blade.php @@ -0,0 +1,11 @@ + <nav> + <div> + <a href="//git.diskfloppy.me/">git</a> | + <a href="/projects/">projects</a> | + <a href="https://github.com/floppydisk05?tab=repositories">repos</a> | + <a href="/calculators/">calculators</a> | + <a href="/computers/">computers</a> | + <a href="/bookmarks/">bookmarks</a> | + <a href="/guestbook/">guestbook</a> + </div> + </nav> |