Skip to content

Instantly share code, notes, and snippets.

@edgarMeinart
Forked from hmans/application.html.slim
Created June 14, 2016 15:13
Show Gist options
  • Save edgarMeinart/5dc9b1ffdc222087566c1a56e72b87c6 to your computer and use it in GitHub Desktop.
Save edgarMeinart/5dc9b1ffdc222087566c1a56e72b87c6 to your computer and use it in GitHub Desktop.
Application layout for Rails (4), Slim style.
doctype html
html
head
title My App
meta name="viewport" content="width=device-width, initial-scale=1.0"
= stylesheet_link_tag "application", media: 'all', 'data-turbolinks-track' => true
= javascript_include_tag "application", 'data-turbolinks-track' => true
= csrf_meta_tags
body
= yield
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment