File: index.html.ep

package info (click to toggle)
libmojo-sqlite-perl 3.009-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 324 kB
  • sloc: perl: 610; sql: 11; makefile: 6
file content (8 lines) | stat: -rw-r--r-- 215 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
% layout 'blog', title => 'Blog';
% for my $post (@$posts) {
  <h2><%= link_to $post->{title} => show_post => {id => $post->{id}} %></h2>
  <p>
    %= $post->{body}
  </p>
% }
%= link_to 'New post' => 'create_post'