Massive Update!

This commit is contained in:
2023-01-22 21:16:44 -08:00
parent 5ceb51541f
commit bab787cdf2
58 changed files with 10618 additions and 3462 deletions

65
frontend/config.php Normal file
View File

@ -0,0 +1,65 @@
<?php
// CONFIG - These control the look and details on your site. Consult documentation for more details.
// GENERAL
// Page title for your site
define('title', 'DarkSleeky theme for YOURLS');
// The short title of your site, used in the footer and in some sub pages
define('shortTitle', 'DarkSleeky');
// 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.');
// The favicon for your site
define('favicon', '/frontend/assets/img/favicon-16.webp');
// Keywords for site
define('keywords', 'Test, 123, Example');
// OG Image for site
define('ogimg', 'YOUR_OGIMG_COVER');
// Wordmark for homepage
define('wordmark', 'WORDMARK_FOR_HOMEPAGE');
// 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
define("enableRecaptcha", false);
// reCAPTCHA V3 Site Key
define("recaptchaV3SiteKey", 'YOUR_SITE_KEY_HERE');
// reCAPTCHA V3 Secret Key
define("recaptchaV3SecretKey", 'YOUR_SECRET_KEY_HERE');
// Enables the custom URL field
// true or false
define('enableCustomURL', true);
// Optional
// Set a primary colour to be used. Default: #007bff
// Here are some other colours you could try:
// #f44336: red, #9c27b0: purple, #00bcd4: teal, #ff5722: orange
// Firewatch BG define('backgroundImage', 'https://sop.wtf/frontend/bgs/hyju.webp');
define('color', '#7289DA');
// Optional
// Set a background image to be used.
// default: unsplash.com random daily photo of the day
// More possibilities of photo embedding from unsplash could be found at: https://source.unsplash.com
// define('backgroundImage', 'https://source.unsplash.com/daily');
// FOOTER
// These are the links in the footer. Add a new link for each new link.
// The array follows a title link structure:
// "TITLE" => "LINK",
$footerLinks = [
"About" => "https://sleeky.flynntes.com/",
"Contact" => "https://yourls.org/",
"Legal" => "https://yourls.org/",
"Admin" => "/admin"
];
?>