Guest User

Untitled

a guest
Jan 17th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. <ul>
  2. <li><%= link_to "Home", root_path %></li>
  3. <li><%= link_to "About", about_path %></li>
  4. <li><%= link_to "Contact", contact_path %></li>
  5. </ul>
  6.  
  7. <ul>
  8. <li><a href="/">Home</a></li>
  9. <li><a href="/about">About</a></li>
  10. <li><a href="/contact">Contact</a></li>
  11. </ul>
  12.  
  13. <script src="/assets/application.js?body=1" type="text/javascript"></script>
  14. <script src="/assets/jquery-1.8.0.min.js?body=1" type="text/javascript"></script>
  15. <script src="/assets/jquery-ui-1.8.23.custom.min.js?body=1" type="text/javascript"> </script>
  16. <script src="/assets/autocomplete-rails.js?body=1" type="text/javascript"></script>
  17. <script src="/assets/rails.js?body=1" type="text/javascript"></script>
  18.  
  19. /*
  20. This has been the source of many questions in the past. This
  21. snippet of CSS appends the URL of each link within the text.
  22. The idea is that users printing your webpage will want to know
  23. the URLs they go to. If you want to remove this functionality,
  24. comment out this snippet and make sure to re-compress your files.
  25. */
  26. a:link:after, a:visited:after {
  27. content: " (" attr(href) ")";
  28. font-size: 90%;
  29. }
Add Comment
Please, Sign In to add comment