Removed "powered by" sitewide footer link

pull/58/head
Rodolfo Berrios 2019-10-14 21:02:23 -03:00
parent 0779e72a16
commit be25cec8ba
2 changed files with 44 additions and 40 deletions

View File

@ -1,7 +1,6 @@
<?php if (!defined('access') or !access) {
die('This file cannot be directly accessed.');
} ?>
<div id="powered-by" class="footer">Powered by <a href="https://chevereto.com" rel="generator">Chevereto</a> image hosting</div>
<?php if (!is_maintenance()) {
G\Render\include_theme_file('snippets/embed_tpl');

View File

@ -1,8 +1,10 @@
<?php if(!defined('access') or !access) die('This file cannot be directly accessed.'); ?>
<?php if (!defined('access') or !access) {
die('This file cannot be directly accessed.');
} ?>
<?php G\Render\include_theme_header(); ?>
<?php
if(CHV\Settings::get('homepage_style') == 'split') {
if (CHV\Settings::get('homepage_style') == 'split') {
CHV\Render\show_theme_inline_code('snippets/index.js');
}
?>
@ -11,9 +13,10 @@
<div id="home-cover-slideshow">
<?php
$i = 0;
foreach(CHV\getSetting('homepage_cover_images_shuffled') as $k => $v) {
if($i > 1 && is_mobile_device()) break;
?>
foreach (CHV\getSetting('homepage_cover_images_shuffled') as $k => $v) {
if ($i > 1 && is_mobile_device()) {
break;
} ?>
<div class="home-cover-img" data-src="<?php echo $v['url']; ?>"></div>
<?php
$i++;
@ -28,8 +31,8 @@
$homepage_cta = [
'<a',
CHV\getSetting('homepage_cta_fn') == 'cta-upload' ? 'data-trigger="anywhere-upload-input"' : 'href="'.CHV\getSetting('homepage_cta_fn_extra').'"',
(CHV\getSetting('homepage_cta_fn') == 'cta-upload' and !CHV\getSetting('guest_uploads')) ? 'data-login-needed="true"' : NULL,
'class="btn btn-big ' . CHV\getSetting('homepage_cta_color') . (CHV\getSetting('homepage_cta_outline') ? ' outline' : NULL) . '">' . (CHV\getSetting('homepage_cta_html') ?: _s('Start uploading')) . '</a>'
(CHV\getSetting('homepage_cta_fn') == 'cta-upload' and !CHV\getSetting('guest_uploads')) ? 'data-login-needed="true"' : null,
'class="btn btn-big ' . CHV\getSetting('homepage_cta_color') . (CHV\getSetting('homepage_cta_outline') ? ' outline' : null) . '">' . (CHV\getSetting('homepage_cta_html') ?: _s('Start uploading')) . '</a>'
];
echo join(' ', $homepage_cta)
?>
@ -42,10 +45,10 @@
<?php
$list = get_list();
if(is_admin()) {
if (is_admin()) {
G\Render\include_theme_file("snippets/user_items_editor");
}
if(is_admin()) {
if (is_admin()) {
?>
<div class="header header-tabs margin-bottom-10">
<h1><strong><?php $home_user ? _se("%s's Images", $home_user['name_short']) : _se('Most recent'); ?></strong></h1>
@ -59,13 +62,13 @@
<div id="home-pics-feature" class="<?php echo count($list->output) == 0 ? 'empty' : 'filled'; ?>">
<div id="content-listing-tabs" class="tabbed-listing">
<?php if(count($list->output) > 0) { ?><div id="home-pics-feature-overlay"></div><?php } ?>
<?php if (count($list->output) > 0) { ?><div id="home-pics-feature-overlay"></div><?php } ?>
<?php
if(count($list->output) == 0 and is_admin()) {
if (count($list->output) == 0 and is_admin()) {
?>
<div class="content-empty">
<span class="icon icon-drawer"></span>
<p><?php $home_user ? _se( "Fill this section uploading pictures to %s account.<br>You can edit the target user in your dashboard settings.", $home_user['name_short']) : _se("There's nothing to show here."); ?></p>
<p><?php $home_user ? _se("Fill this section uploading pictures to %s account.<br>You can edit the target user in your dashboard settings.", $home_user['name_short']) : _se("There's nothing to show here."); ?></p>
</div>
<?php
} else {
@ -78,7 +81,7 @@
<?php CHV\Render\show_banner('home_after_listing', get_list()->sfw); ?>
<?php
if(!get_logged_user() and CHV\getSetting('enable_signups')) {
if (!get_logged_user() and CHV\getSetting('enable_signups')) {
?>
<div id="home-join" class="c20 fluid-column center-box text-align-center">
<h1><?php _se('Sign up to unlock all the features'); ?></h1>
@ -93,4 +96,6 @@
<?php } ?>
<div class="footer"><?php _se('Powered by'); ?> <a href="https://chevereto.com" rel="generator">Chevereto</a></div>
<?php G\Render\include_theme_footer(); ?>