Skip to content

Instantly share code, notes, and snippets.

@thetutlage
Created February 10, 2016 07:00
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 thetutlage/a293221675d8ecfb5de4 to your computer and use it in GitHub Desktop.
Save thetutlage/a293221675d8ecfb5de4 to your computer and use it in GitHub Desktop.
Master view for adonis tweedle application
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Tweedle</title>
<meta name="description" content="">
<meta name="author" content="">
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,200,300,600,700,900' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="/style.css">
</head>
<body>
<div class="__main">
<div class="__header">
<div class="__container">
<div class="__menu">
<a href="/" class="__logo">Tweedle</a>
<ul>
<li><a href="/" class="__active" >Stories</a></li>
<li><a href="/story/create" class="__button">+ New Story</a></li>
</ul>
</div>
<div class="__menu __right">
<ul>
<li><a href="/login">Login</a> <span>/</span> <a href="/signup">Signup</a></li>
</ul>
</div>
</div>
</div><!-- end __header -->
<div class="__content">
<div class="inner__grid">
{% block content %}
{% endblock %}
</div><!-- end inner__grid -->
</div><!-- end __content -->
</div><!-- end __main -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment