Skip to content

Commit

Permalink
refs #1604 : modified : entry list view UI modified.
Browse files Browse the repository at this point in the history
  • Loading branch information
inureyes committed Feb 27, 2012
1 parent 92e2ad7 commit d0d3960
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion interface/i/archive/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@

$itemsView .= ' <img src="' . $imageSrc . '" />'.CRLF;
$itemsView .= ' <h3>'.fireEvent('ViewListTitle', htmlspecialchars($item['title'])) . '</h3>'.CRLF;
$itemsView .= ' <p>' . Timestamp::format5($item['published']) . '</span><span class="ui-li-count"> ' . _textf('댓글 %1개',($item['comments'] > 0 ? $item['comments'] : 0)) . '</p>'.CRLF;
$itemsView .= ' <p class="ui-li-aside">' . Timestamp::format5($item['published']) . '</span><span class="ui-li-count"> ' . _textf('댓글 %1개',($item['comments'] > 0 ? $item['comments'] : 0)) . '</p>'.CRLF;
$itemsView .= ' <p>'.htmlspecialchars(UTF8::lessenAsEm(removeAllTags(stripHTML($item['content'])), 150)).'</p>'.CRLF;
$itemsView .= ' </a>'.CRLF;
$itemsView .= '</li>'.CRLF;
}
Expand Down
3 changes: 2 additions & 1 deletion interface/i/category/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@

$itemsView .= ' <img src="' . $imageSrc . '" />'.CRLF;
$itemsView .= ' <h3>'.fireEvent('ViewListTitle', htmlspecialchars($item['title'])) . '</h3>'.CRLF;
$itemsView .= ' <p>' . Timestamp::format5($item['published']) . '</span><span class="ui-li-count"> ' . _textf('댓글 %1개',($item['comments'] > 0 ? $item['comments'] : 0)) . '</p>'.CRLF;
$itemsView .= ' <p class="ui-li-aside">' . Timestamp::format5($item['published']) . '</span><span class="ui-li-count"> ' . _textf('댓글 %1개',($item['comments'] > 0 ? $item['comments'] : 0)) . '</p>'.CRLF;
$itemsView .= ' <p>'.htmlspecialchars(UTF8::lessenAsEm(removeAllTags(stripHTML($item['content'])), 150)).'</p>'.CRLF;
$itemsView .= ' </a>'.CRLF;
$itemsView .= '</li>'.CRLF;
}
Expand Down
3 changes: 2 additions & 1 deletion interface/i/entry/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@

$itemsView .= ' <img src="' . $imageSrc . '" />'.CRLF;
$itemsView .= ' <h3>'.fireEvent('ViewListTitle', htmlspecialchars($item['title'])) . '</h3>'.CRLF;
$itemsView .= ' <p>' . Timestamp::format5($item['published']) . '</span><span class="ui-li-count"> ' . _textf('댓글 %1개',($item['comments'] > 0 ? $item['comments'] : 0)) . '</p>'.CRLF;
$itemsView .= ' <p class="ui-li-aside">' . Timestamp::format5($item['published']) . '</span><span class="ui-li-count"> ' . _textf('댓글 %1개',($item['comments'] > 0 ? $item['comments'] : 0)) . '</p>'.CRLF;
$itemsView .= ' <p>'.htmlspecialchars(UTF8::lessenAsEm(removeAllTags(stripHTML($item['content'])), 150)).'</p>'.CRLF;
$itemsView .= ' </a>'.CRLF;
$itemsView .= '</li>'.CRLF;
}
Expand Down
3 changes: 2 additions & 1 deletion interface/i/tag/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@

$itemsView .= ' <img src="' . $imageSrc . '" />'.CRLF;
$itemsView .= ' <h3>'.fireEvent('ViewListTitle', htmlspecialchars($item['title'])) . '</h3>'.CRLF;
$itemsView .= ' <p>' . Timestamp::format5($item['published']) . '</span><span class="ui-li-count"> ' . _textf('댓글 %1개',($item['comments'] > 0 ? $item['comments'] : 0)) . '</p>'.CRLF;
$itemsView .= ' <p class="ui-li-aside">' . Timestamp::format5($item['published']) . '</span><span class="ui-li-count"> ' . _textf('댓글 %1개',($item['comments'] > 0 ? $item['comments'] : 0)) . '</p>'.CRLF;
$itemsView .= ' <p>'.htmlspecialchars(UTF8::lessenAsEm(removeAllTags(stripHTML($item['content'])), 150)).'</p>'.CRLF;
$itemsView .= ' </a>'.CRLF;
$itemsView .= '</li>'.CRLF;
}
Expand Down

0 comments on commit d0d3960

Please sign in to comment.