Config updates

This commit is contained in:
2022-04-23 16:01:47 +03:00
parent 33e14d4c8f
commit 622219192f
5 changed files with 9 additions and 10 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View File

@@ -1,22 +1,22 @@
<?php
<?php
// CONFIG - These control the look and details on your site. Consult documentation for more details.
// GENERAL
// Page title for your site
define('title', 'Sleeky theme for YOURLS');
define('title', 'Jupiter Network');
// The short title of your site, used in the footer and in some sub pages
define('shortTitle', 'Sleeky');
define('shortTitle', 'Jupiter');
// A description of your site, shown on the homepage.
define('description', 'A quick description on why your site is so fantastic, what it does and why people should definitely start using it. Oh, and how its free.');
define('description', '');
// The favicon for your site
define('favicon', '/frontend/assets/img/favicon.ico');
// Logo for your site, displayed on home page
define('logo', '/frontend/assets/img/logo-black.png');
define('logo', '/frontend/assets/img/jupiter.png');
// Enable reCAPTCHA V3
// It is highly recommended you use reCAPTCHA V3. It will stop spam. You can get a site and secret key from here: https://www.google.com/recaptcha/admin/create
@@ -50,9 +50,8 @@ define('colour', '#007bff');
// The array follows a title link structure:
// "TITLE" => "LINK",
$footerLinks = [
"About" => "https://sleeky.flynntes.com/",
"Contact" => "https://yourls.org/",
"Legal" => "https://yourls.org/",
"Contact" => "mailto:nick@karaolidis.com",
"Socials" => "https://social.karaolidis.com/",
"Admin" => "/admin"
];

View File

@@ -12,12 +12,12 @@
<title><?php echo title ?></title>
<link rel="stylesheet" href="<?php echo $YOURLS_SITE ?>/frontend/dist/styles.css">
<link rel="stylesheet" href="<?php $YOURLS_SITE ?>/frontend/dist/styles.css">
<?php if (defined('backgroundImage')) : ?>
<style>
body {
background: url(<?php echo backgroundImage ?>) no-repeat center center fixed !important;
background: url(<?php echo backgroundImage ?>) no-repeat center center fixed !important;
background-size: cover !important;
}
</style>