You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
437 B
18 lines
437 B
!!!
|
|
%html
|
|
%head
|
|
%title Rotten Potatoes!
|
|
= stylesheet_link_tag 'application', 'media' => 'all', 'data-turbolinks-track' => true
|
|
= javascript_include_tag 'application', 'data-turbolinks-track' => true
|
|
= csrf_meta_tags
|
|
|
|
%body
|
|
%h1.title Rotten Potatoes!
|
|
#main
|
|
- if flash[:notice]
|
|
#notice.message= flash[:notice]
|
|
- elsif flash[:warning]
|
|
#warning.message= flash[:warning]
|
|
|
|
= yield
|