File: entry.tt

package info (click to toggle)
libdancer2-perl 2.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,768 kB
  • sloc: perl: 8,671; sql: 14; makefile: 8
file content (17 lines) | stat: -rw-r--r-- 523 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
    <% IF entry %>
    <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>
            <p><% entry.summary | html_entity %></p>
        </div>
        <div id="content" class="col-md-1">
            <h1><% entry.title | html_entity %></h1>
            <p><% entry.content | html_entity %></p>
        </div>
    </div>
    <% ELSE %>
        <p>Invalid entry.</p>
    <% END %>