friendship ended with social-app. php is my new best friend

update templates

Changed files
+6 -2
css
_partials
templates
+3
css/_partials/_home.scss
···
+
.homeHeader {
+
padding: 10px;
+
}
+2 -1
index.php
···
'userAuth' => Flight::get('userAuth'),
'favFeeds' => $favoriteFeeds,
'pages' => PAGES,
-
'links' => LINKS
+
'links' => LINKS,
+
'ogdomain' => SITE_DOMAIN
]);
Flight::route('/', function () {
+1 -1
templates/home.latte
···
{block content}
<div class="homeHeader">
-
You're viewing <a href="{$feedInfo->url}">{$feedInfo->title}</a>
+
You're viewing <a href="{$feedInfo->url}">{$feedInfo->title}</a>. <a href="/login">Log in</a> to set your own home feed.
</div>
<div class="postsList" data-uri="{$feedAtUri}" data-cursor="{$cursor}">
{include '_partials/refreshbar.latte', feedType: 'feed'}