Sha256: 99ff2ceb8262fc37201f7211ef59dc52cb6bd38e4b880f4aeb80f4d9cd7396cb
Contents?: true
Size: 1.81 KB
Versions: 16
Compression:
Stored size: 1.81 KB
Contents
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Project</title> <meta name="description" content=""> <meta name="author" content=""> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <% if @project.jammit -%> <link rel="stylesheet" href="assets/app.css"> <% else -%> <% @project.css_assets.each do |css| -%> <link rel="stylesheet" href="stylesheets/<%=css %>"> <% end -%> <link rel="stylesheet" href="stylesheets/app.css"> <% end -%> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-XXXXX-X']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </head> <body> <h1>My Project</h1> <p> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </p> <% if @project.jammit -%> <script src="assets/app.js"></script> <% else -%> <% @project.js_assets.each do |js| -%> <script src="javascripts/<%=js %>"></script> <% end -%> <script src="javascripts/app.js"></script> <% end -%> </body> </html>
Version data entries
16 entries across 16 versions & 1 rubygems