template/rails/application.html.erb in edge_framework-0.9.12 vs template/rails/application.html.erb in edge_framework-0.10.0
- old
+ new
@@ -1,30 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width" />
+
+ <!-- WEBSITE DETAIL -->
<title><%%= content_for?(:title) ? yield(:title) : "Untitled" %></title>
- <meta name="description" content="This is a description of your website" />
- <meta name="keywords" content="search, key, word," /> <!-- Comma-separated list for Search keyword -->
+ <meta name="description" content="This is a description of your website">
+ <meta name="keywords" content="search, key, word,">
<!-- FAVICON -->
<link rel="icon" type="image/png" href="<%%= image_path "favicon.png" %>">
<link rel="apple-touch-icon-precomposed" type="image/png" href="<%%= image_path "favicon-big.png" %>">
- <!-- CSS and JS -->
- <%%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
+ <!-- STYLESHEET and JAVASCRIPT -->
+ <%%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
<%%= javascript_include_tag "application" %>
<%%= csrf_meta_tags %>
</head>
<body>
<div id="main-wrapper">
<header class="main-header"></header>
<%%= yield %>
- <aside id="footer-push"></aside>
+ <div id="footer-push"></div>
</div>
<footer class="main-footer"></footer>
</body>
</html>
\ No newline at end of file