Skip to content

Instantly share code, notes, and snippets.

@vkurennov
Created November 19, 2013 10:14
Show Gist options
  • Save vkurennov/7543204 to your computer and use it in GitHub Desktop.
Save vkurennov/7543204 to your computer and use it in GitHub Desktop.
doctype html
html lang="en"
head
meta charset="utf-8"
title= content_for?(:title) ? yield(:title) : "My Project"
= render 'header'
body
= yield
= render 'footer'
content_for :title do
"Hello World!"
content_for :footer do
"Bay-Bay!"
p
This is a page's text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment