Skip to content

Instantly share code, notes, and snippets.

@CiaraBurkett
Last active December 14, 2015 08:49
Show Gist options
  • Save CiaraBurkett/5060363 to your computer and use it in GitHub Desktop.
Save CiaraBurkett/5060363 to your computer and use it in GitHub Desktop.
A Sublime Text code snippet for Slim with Rails. I'll be adding Internet Explorer fallbacks.
<snippet>
<content><![CDATA[
doctype html
html lang="en"
head
meta charset="UTF-8"
title $1
= stylesheet_link_tag "application", :media => "all"
= javascript_include_tag "application"
= csrf_meta_tags
body
.container
==yield
]]></content>
<tabTrigger>slimrails</tabTrigger>
<scope>text.slim</scope>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment