[READ-ONLY] Mirror of https://github.com/shuuji3/rails-tutorial-sample-app.
0

Configure Feed

Select the types of activity you want to include in your feed.

rails-tutorial-sample-app / app / views / layouts / application.html.erb
366 B 13 lines
1<!DOCTYPE html> 2<html> 3 <head> 4 <title><%= yield(:title) %> | Ruby on Rails Tutorial Sample App</title> 5 <%= csrf_meta_tags %> 6 <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> 7 <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %> 8 </head> 9 10 <body> 11 <%= yield %> 12 </body> 13</html>