You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
442 B
21 lines
442 B
9 years ago
|
<div class="article">
|
||
|
% my @sections = $self->sections;
|
||
|
% for my $i ( 0..$#sections ) {
|
||
|
<%= $sections[$i] %>
|
||
|
% }
|
||
|
|
||
|
<div class="bottom_bar">
|
||
|
% if ($self->author) {
|
||
|
<span class="user"><%= $self->author %></span>
|
||
|
% }
|
||
|
% if (my @tags = $self->tags) {
|
||
|
<span class="tags">
|
||
|
% for my $tag (@tags) {
|
||
|
<a href="<%= $tag->href %>"><%= $tag->text %></a>
|
||
|
% }
|
||
|
</span>
|
||
|
% }
|
||
|
</div>
|
||
|
<div id="comments"><!-- loaded with ajax --></div>
|
||
|
</div>
|