[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
323 B 14 lines
1<!DOCTYPE html> 2<html> 3 <head> 4 <title>SampleApp</title> 5 <%= csrf_meta_tags %> 6 7 <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> 8 <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %> 9 </head> 10 11 <body> 12 <%= yield %> 13 </body> 14</html>