Skip to content

Instantly share code, notes, and snippets.

View ffmit's full-sized avatar
🎯
Focusing

ffmit

🎯
Focusing
View GitHub Profile
@ffmit
ffmit / master.blade.php
Created September 7, 2019 18:57
Contains the basics for a blade based layout master view
@include('layout.header')
@include('layout.navbar')
@yield('content')
@include('layout.footer')
@ffmit
ffmit / bulma_laravel_starter_navigation.blade.php
Created September 6, 2019 12:16
Bulma Starter template for Laravel. Modified source from https://codepen.io/hunzaboy/pen/yoPKQW?editors=1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hello MSD!</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.5/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
</head>