Skip to content

Instantly share code, notes, and snippets.

@albertbaldi
Created October 5, 2015 13:32
Show Gist options
  • Save albertbaldi/92ef9d4c24c11ce47e92 to your computer and use it in GitHub Desktop.
Save albertbaldi/92ef9d4c24c11ce47e92 to your computer and use it in GitHub Desktop.
SublimeText 2 snippet: Blade extend
<snippet>
<content>
<![CDATA[
@extends('${1:app}')
@section('${2:content}')
${3}
@endsection
]]>
</content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>extend</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.python</scope> -->
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment