Created
February 3, 2016 07:22
-
-
Save bendavis78/4792d3da9480e394e430 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Musicdb</title> | |
<%= stylesheet_link_tag "application", :media => "all" %> | |
<%= stylesheet_link_tag "https://fonts.googleapis.com/icon?family=Material+Icons" %> | |
<%= javascript_include_tag "application" %> | |
<%= csrf_meta_tags %> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/> | |
</head> | |
<body> | |
<nav class="light-blue lighten-1" role="navigation"> | |
<div class="nav-wrapper container"> | |
<%= link_to Rails.application.class.parent_name, root_url, :class => "brand-logo", :id => "logo-container" %> | |
<ul class="right hide-on-med-and-down"> | |
<li><%= link_to "Genres", genres_url %></li> | |
<li><%= link_to "Artists", artists_url %></li> | |
<li><%= link_to "Songs", songs_url %></li> | |
</ul> | |
<ul id="nav-mobile" class="side-nav"> | |
<li><%= link_to "Artists", artists_url %></li> | |
</ul> | |
<a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a> | |
</div> | |
</nav> | |
<div class="container"> | |
<%= yield %> | |
</div> | |
<footer class="page-footer orange"> | |
<div class="container"> | |
<div class="row"> | |
<div class="col l6 s12"> | |
<h5 class="white-text">Company Bio</h5> | |
<p class="grey-text text-lighten-4"> | |
Lorem ipsum dolor sit amet, ius unum idque at. Pertinax eloquentiam | |
efficiantur an sea. Pro ei stet nostro aeterno, eam ut impedit | |
disputationi. | |
</p> | |
</div> | |
<div class="col l3 s12"> | |
<h5 class="white-text">Settings</h5> | |
<ul> | |
<li><a class="white-text" href="#!">Link 1</a></li> | |
<li><a class="white-text" href="#!">Link 2</a></li> | |
<li><a class="white-text" href="#!">Link 3</a></li> | |
<li><a class="white-text" href="#!">Link 4</a></li> | |
</ul> | |
</div> | |
<div class="col l3 s12"> | |
<h5 class="white-text">Connect</h5> | |
<ul> | |
<li><a class="white-text" href="#!">Link 1</a></li> | |
<li><a class="white-text" href="#!">Link 2</a></li> | |
<li><a class="white-text" href="#!">Link 3</a></li> | |
<li><a class="white-text" href="#!">Link 4</a></li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
<div class="footer-copyright"> | |
<div class="container"> | |
Made with <a class="orange-text text-lighten-3" href="http://rubyonrails.org/" target="_blank">Ruby on Rails</a> | |
</div> | |
</div> | |
</footer> | |
<script> | |
<% if notice.present? %> | |
Materialize.toast('<%= notice %>', 4000); | |
<% end %> | |
</script> | |
</body> | |
</html> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment