diff options
Diffstat (limited to 'handler/Auto.php')
-rw-r--r-- | handler/Auto.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/handler/Auto.php b/handler/Auto.php index 361cc17..0656c44 100644 --- a/handler/Auto.php +++ b/handler/Auto.php @@ -65,10 +65,14 @@ class Auto extends RequestHandler { $s->title = $post->title; + if ($post->toc) + $s->setOptions(['wide' => true]); + return $s->renderPage('main/post', title: $post->title, id: $post->id, unsafe_html: $post->getHtml($this->isRetina(), \themes::getUserTheme()), + unsafe_toc_html: $post->getToc(), date: $post->getFullDate(), tags: $tags, visible: $post->visible, |