We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 704f050 commit e241011Copy full SHA for e241011
views/entry.tt
@@ -1,15 +1,17 @@
1
<% IF entry %>
2
- <div id="sidebar">
3
- <h1>Posted at</h1>
4
- <p><% entry.created_at | html_entity %></p>
5
- <h1>Summary</h1>
6
- <p><% entry.summary | html_entity %></p>
+ <div class="row align-items-start">
+ <div id="sidebar" class="col-md-2">
+ <h4>Posted at</h4>
+ <p><% entry.created_at | html_entity %></p>
+ <h4>Summary</h4>
7
+ <p><% entry.summary | html_entity %></p>
8
+ </div>
9
+ <div id="content" class="col-md-1">
10
+ <h1><% entry.title | html_entity %></h1>
11
+ <p><% entry.content | html_entity %></p>
12
13
</div>
- <div id="content">
- <h2><% entry.title | html_entity %></h2>
- <p><% entry.content | html_entity %></p>
14
<% ELSE %>
15
<p>Invalid entry.</p>
16
<% END %>
- </div>
17
0 commit comments