pilligrim28

Untitled

Jun 16th, 2020
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Blog</title>
  5. <%= csrf_meta_tags %>
  6. <%= csp_meta_tag %>
  7.  
  8. <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
  9. <%= javascript_pack_tag 'application', 'data-turbolinks-track': 'reload' %>
  10. </head>
  11.  
  12. <body>
  13. <div class="container">
  14. </div>
  15.  
  16. <div class="d-flex flex-column flex-md-row align-items-center p-3 px-md-4 mb-3 bg-white border-bottom shadow-sm">
  17. <nav class="navbar navbar-light">
  18.  
  19. <h2 class="navbar-brand mr-md-auto font-weight-bold" href="#">Pilligrim28</h2>
  20.  
  21. <span class="p-2 text-dark"><%=link_to "Все статьи",
  22. posts_path%></span>
  23. <span class="p-2 text-dark"><%=link_to "Обо мне",
  24. about_path%></span>
  25. <%= link_to 'Новая статья', new_post_path, class: 'btn btn-outline-primary pull-xs-right border-right'%>
  26.  
  27. </nav>
  28. </div>
  29.  
  30. <%= yield %>
  31. </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment