Skip to content

Instantly share code, notes, and snippets.

@rishavs
Created June 28, 2018 20:07
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 rishavs/62934b7d861faa1872b3722cc2e37853 to your computer and use it in GitHub Desktop.
Save rishavs/62934b7d861faa1872b3722cc2e37853 to your computer and use it in GitHub Desktop.
module Cove::Views
def self.navbar
html = <<-HTML
<div class="ui fixed menu">
<div class="ui container">
<a href="/" class="header item" >
Digglu
</a>
<div class="item">
<a href="/about" >About</a>
</div>
<div class="item">
<a href="/register" >Register</a>
</div>
<div class="item">
<a href="/login" class="ui blue button" >Login</a>
</div>
</div>
</div>
HTML
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment