mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-23 03:02:38 +01:00
12 lines
560 B
PHP
12 lines
560 B
PHP
<footer class='footer'>
|
|
@if(Setting::get('show_support'))
|
|
<p>{{ trans('cachet.powered_by', ['app' => Setting::get('app_name')]) }}</p>
|
|
@endif
|
|
<p><a href='/rss'><i class='ion-social-rss'></i> {{ trans('cachet.rss-feed') }}</a> - <a href='/atom'><i class='ion-social-rss'></i> {{ trans('cachet.atom-feed') }}</a></p>
|
|
@if(Auth::check())
|
|
<p>
|
|
<a href="{{ route('dashboard') }}">{{ trans('dashboard.dashboard') }}</a> – <a href="{{ route('logout') }}">{{ trans('dashboard.logout') }}</a>
|
|
</p>
|
|
@endif
|
|
</footer>
|