Add feed link

This commit is contained in:
danpros 2024-01-03 19:07:57 +07:00
commit f6fe970ef4
12 changed files with 25 additions and 27 deletions

View file

@ -280,6 +280,7 @@ get('/author/:name', function ($name) {
'posts' => null,
'about' => $author->about,
'name' => $author->name,
'author' => $author,
'type' => 'is_profile',
'bodyclass' => 'in-profile author-' . $name,
'breadcrumb' => '<a href="' . site_url() . '">' . config('breadcrumb.home') . '</a> &#187; ' . i18n('Profile_for') . ' ' . $author->name,
@ -307,6 +308,7 @@ get('/author/:name', function ($name) {
'posts' => $posts,
'about' => $author->about,
'name' => $author->name,
'author' => $author,
'type' => 'is_profile',
'bodyclass' => 'in-profile author-' . $name,
'breadcrumb' => '<a href="' . site_url() . '">' . config('breadcrumb.home') . '</a> &#187; ' . i18n('Profile_for') . ' ' . $author->name,