rails_layout 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a3572c15e87d22809ef5f571161aadde139f87c8
|
4
|
+
data.tar.gz: a8ce6ba2a503fd9428121c2b29714a45af32cc00
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cbca34f6ecd9797d6b8ef76cf451290cd77949270f6260b1f68d2fef3fee604157b189c97fc8b7952de2b260e00408ad02eaac7b300a7fb0c76ebbfbeeb8f628
|
7
|
+
data.tar.gz: 56c7566b3f41ed0bdaa637ecbba31689cf9b2edda9031c02d9cf5abf6e2d4c5c4ce7cbe4913c7023e1e02c5027627ca3dd29814c110eae25444ac2f707eebc07
|
data/CHANGELOG.textile
CHANGED
@@ -4,8 +4,8 @@
|
|
4
4
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
5
5
|
<title><%%= content_for?(:title) ? yield(:title) : "<%= app_name.underscore.titleize %>" %></title>
|
6
6
|
<meta name="description" content="<%%= content_for?(:description) ? yield(:description) : "<%= app_name.underscore.titleize %>" %>">
|
7
|
-
|
8
|
-
|
7
|
+
<%%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
|
8
|
+
<%%= javascript_include_tag "application", "data-turbolinks-track" => true %>
|
9
9
|
<%%= csrf_meta_tags %>
|
10
10
|
</head>
|
11
11
|
<body>
|
@@ -2,20 +2,20 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
5
|
-
<title
|
6
|
-
<meta name="description" content="
|
7
|
-
|
8
|
-
|
9
|
-
|
5
|
+
<title><%%= content_for?(:title) ? yield(:title) : "<%= app_name.underscore.titleize %>" %></title>
|
6
|
+
<meta name="description" content="<%%= content_for?(:description) ? yield(:description) : "<%= app_name.underscore.titleize %>" %>">
|
7
|
+
<%%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
|
8
|
+
<%%= javascript_include_tag "application", "data-turbolinks-track" => true %>
|
9
|
+
<%%= csrf_meta_tags %>
|
10
10
|
</head>
|
11
11
|
<body>
|
12
12
|
<div id="container">
|
13
13
|
<header>
|
14
|
-
|
15
|
-
|
14
|
+
<%%= render 'layouts/navigation' %>
|
15
|
+
<%%= render 'layouts/messages' %>
|
16
16
|
</header>
|
17
17
|
<main role="main">
|
18
|
-
|
18
|
+
<%%= yield %>
|
19
19
|
</main>
|
20
20
|
<footer>
|
21
21
|
</footer>
|
data/lib/rails_layout/version.rb
CHANGED