Skip to content

Instantly share code, notes, and snippets.

@Josebuendia
Created July 10, 2020 17:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Josebuendia/55d7e8aca8016809f5d1ea7b234527e6 to your computer and use it in GitHub Desktop.
Save Josebuendia/55d7e8aca8016809f5d1ea7b234527e6 to your computer and use it in GitHub Desktop.
My application.html.erb farming web app
<!DOCTYPE html>
<html>
<head>
<title> <%= yield(:title) %> | Agri Foods</title>
<%= csrf_meta_tags %>
<%= csp_meta_tag %>
<!--Turbolinks go here-->
<%= stylesheet_link_tag 'application', media: 'all' %>
<%= javascript_pack_tag 'application', 'data-turbolinks-track': 'reload' %>
</head>
<body>
<header class="headSec">
<h1>Agri Foods</h1>
<!--<a href="about.html"><img src="icons/logo text.png" width="300" height="65" alt=""></a>-->
</div>
<ul>
<li><%= link_to "Home", "/" %></li>
<li><%= link_to "About", about_path %></li>
<li><%= link_to "Contact", contact_path %></li>
</ul>
</header>
<div class="container">
<%= yield %>
</div>
<footer class="foot">
<h1>Im the Footer</h1>
<p>MAIN MENU</p><p>Company</p><p>FIND US ON</p>
<p>Home</p><p>Our Story</p>
<p>Worrk for us</p>
<p>About</p>
<p>Contact</p>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment