summaryrefslogtreecommitdiff
path: root/src/web/_views/_template
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/web/_views/_template/comment.php4
-rw-r--r--src/web/_views/_template/post.php2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/web/_views/_template/comment.php b/src/web/_views/_template/comment.php
index b947ff6..f8a0ff5 100644
--- a/src/web/_views/_template/comment.php
+++ b/src/web/_views/_template/comment.php
@@ -7,6 +7,8 @@
<strong><?=$this->format_name($user)?></strong>
<span class="subtext ml"><?=$this->format_date($comment['created'])?></span>
</div>
- <?=$comment['content']?>
+ <p class="content">
+ <?=$comment['content']?>
+ </p>
</div>
</div>
diff --git a/src/web/_views/_template/post.php b/src/web/_views/_template/post.php
index f7f5de2..53596d7 100644
--- a/src/web/_views/_template/post.php
+++ b/src/web/_views/_template/post.php
@@ -8,7 +8,7 @@
<span class="subtext"><?=$this->format_date($post['created'])?></span>
</div>
</div>
- <p>
+ <p class="content">
<?=$post['content']?>
</p>
<?php