File tree Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Original file line number Diff line number Diff line change 18
18
<%= render Pages ::Header ::Container . new do |c | %>
19
19
<%= c . title { page . title } %>
20
20
<%= c . description { page . description } if page . description %>
21
- < div class ="flex flex-col lg:flex-row justify-between ">
22
- <%= render Pages ::Timestamp . new published_on : page . published_on , updated_on : page . revised_on , class : "text-small" %>
23
- < span class ="text-small ">
24
- <% topics = @page . topics . approved . pluck ( :slug ) %>
25
- <% if topics . present? %>
26
- <%= render Pages ::Topics . new ( topics : topics ) %>
27
- <% end %>
28
- </ span >
21
+ <%= render Pages ::Timestamp . new published_on : page . published_on , updated_on : page . revised_on , class : "text-small block" %>
22
+ < div class ="text-small ">
23
+ <% topics = @page . topics . approved . pluck ( :slug ) %>
24
+ <% if topics . present? %>
25
+ <%= render Pages ::Topics . new ( topics : topics ) %>
26
+ <% end %>
29
27
</ div >
30
28
<% end %>
31
29
< div class ="article-content container " itemprop ="articleBody ">
Original file line number Diff line number Diff line change @@ -45,10 +45,10 @@ def content(**)
45
45
end
46
46
p ( class : "description" ) { description } if description
47
47
if published_on
48
- render Pages ::Timestamp . new published_on : published_on , class : "block"
48
+ render Pages ::Timestamp . new published_on : published_on , class : "text-small block"
49
49
end
50
- a ( href : request_path , class : "block uppercase strong " ) do
51
- small { "Read now" }
50
+ a ( href : request_path , class : "block uppercase text-small " ) do
51
+ "Read now"
52
52
end
53
53
end
54
54
end
You can’t perform that action at this time.
0 commit comments