Skip to content

Instantly share code, notes, and snippets.

@richlove1
Created May 25, 2013 23:58
Show Gist options
  • Save richlove1/5651245 to your computer and use it in GitHub Desktop.
Save richlove1/5651245 to your computer and use it in GitHub Desktop.
Skeleton blade file
@extends('templates.main')
<!-- Angular ng-app directive for html tag -->
@section('ng-app')ng-app=""@stop
<!-- Angular ng-controller directive for body tag -->
@section('ng-controller')ng-controller=""@stop
<!-- Page title -->
@section('page-title')
@parent
- {{$pageName}}
@stop
<!-- Add Meta Description -->
@section('meta_description')
@parent
@stop
<!-- Add Meta Keywords -->
@section('meta_keywords')
@parent
@stop
<!-- Add inline styles or include style assets -->
@section('styles')
@stop
<!-- Add inline script or include js assets -->
@section('js-top')
@stop
<!-- Body id -->
@section('body-id')
@stop
<!-- Body class -->
@section('body-class')
@stop
<!-- Breadcrumb -->
@section('breadcrumb')
@stop
<!-- Page Heading -->
@section('page-heading')
<h1>{{$pageName}}</h1>
@stop
<!-- Main content -->
@section('content')
<div class="row">
<div class="large-24 columns">
</div>
</div>
@stop
<!-- Add inline script or include js assets -->
@section('js-bottom')
@stop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment