diff options
Diffstat (limited to 'src/web/_views/apps/blog.php')
-rw-r--r-- | src/web/_views/apps/blog.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/_views/apps/blog.php b/src/web/_views/apps/blog.php index f64453c..78abaa7 100644 --- a/src/web/_views/apps/blog.php +++ b/src/web/_views/apps/blog.php @@ -6,8 +6,8 @@ $meta = $post['meta']; $link = $this->get_url('blog/post/' . substr($name, 0, -3)); echo '<a href="' . $link . '"><h3>' . $meta['name'] . '</h3></a>'; - echo '<span>' . $meta['desc'] . '</span><br>'; - echo '<span><time>' . $this->format_date($meta['date']) . '</time></span>'; + echo '<div class="span">' . $meta['desc'] . '</div>'; + echo '<div class="span"><time>' . $this->format_date($meta['date']) . '</time></div>'; } ?> </div> |