Sha256: 1b5d889c5c279b31425b407c8b5934077be42c15e11cad058b98003529e21c3b
Contents?: true
Size: 757 Bytes
Versions: 14
Compression:
Stored size: 757 Bytes
Contents
<!DOCTYPE html> <html> <head> <title>Myapp</title> <%= stylesheet_link_tag "slicehost.css" %> </head> <body> <div id="header"> <div id="logo"><h1>It Gotta B Simple</h1></div> </div> <div id="navigation"> <ul> <li><%=link_to "Menu", "#menu"%></li> <li><%=link_to "Goes", "#goes"%></li> <li><%=link_to "Here", "#here"%></li> </ul> </div> <div id="contents"> <div id="notice"> <div class="notice"> Sample Notice </div> <!-- <div class="error"> Sample Error </div> --> </div> <div id="sidebar"> <h3> Some List </h3> <ul> <li>list1</li> <li>list2</li> <li>list3</li> <li>list4</li> </ul> </div> <%=yield%> </div> <div id="footer"> Copyright goes here </div> </body> </html>
Version data entries
14 entries across 7 versions & 1 rubygems