Sha256: 11e8547c1804a141116050dc344fade2b3485d1937da93aeb0bf392db00116d9
Contents?: true
Size: 1.16 KB
Versions: 7
Compression:
Stored size: 1.16 KB
Contents
<!doctype html> <html dir="ltr" lang="en"> <head> <meta charset="utf-8"> <title><%= @title + ' | Test Application' %></title> <meta name="HandheldFriendly" content="True"> <meta name="MobileOptimized" content="320"> <meta name="viewport" content="width=device-width, target-densitydpi=160dpi, initial-scale=1"> <link href="http://localhost:4567/css/style.css" media="screen" rel="stylesheet"> <!--[if lt IE 9]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> </head> <body> <header> <hgroup> <h1><a href="/">Testing Application</a></h1> <h2>Minimal Testing Application</h2> </hgroup> </header> <div id="main"> <% if flash[:notice] %> <p class="notice"><%= flash[:notice] %></p> <% end %> <% if flash[:error] %> <p class="error"><%= flash[:error] %> <% end %> <%= yield %> </div> <footer> <p><small>An app for attaching the <a href="https://github.com/jnyman/symbiont">Symbiont</a> to.</small></p> <p><small>Part of the <a href="https://github.com/jnyman/lucid">Lucid Framework</a>.</small></p> </footer> </body> </html>
Version data entries
7 entries across 7 versions & 1 rubygems