Sha256: e4666ddd904a015e447f01e80250e731d0270036aa2107939eb7132530cbfc38
Contents?: true
Size: 688 Bytes
Versions: 1
Compression:
Stored size: 688 Bytes
Contents
<% if template_ext == 'erb' -%> <!DOCTYPE html> <html> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8"> <title><%= @app_name %></title> <link type="text/css" rel="stylesheet" href="<%%= asset_path "/assets/app.css" %>"> <script type="text/javascript" src="<%%= asset_path "/assets/app.js" %>"></script> </head> <body> <%%== yield %> </body> </html> <% else -%> doctype html html head meta http-equiv="Content-type" content="text/html; charset=utf-8" title | <%= @app_name %> link type="text/css" rel="stylesheet" href=asset_path("/assets/app.css") script type="text/javascript" src=asset_path("/assets/app.js") body == yield <% end -%>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
nyara-0.1.pre.2 | lib/nyara/templates/app/views/layouts/application.%template_ext%.tt |