2024-04-25 16:06:18 +00:00
|
|
|
<?php
|
2024-04-25 18:47:48 +00:00
|
|
|
// QUrl Theme for YOURLS
|
|
|
|
// A simple theme for YOURLS built based on the Bootstrap framework.
|
|
|
|
// Author: ookris => https://github.com/ookris/QUrl
|
2024-04-25 16:06:18 +00:00
|
|
|
|
2024-04-25 18:47:48 +00:00
|
|
|
// Theme config file
|
2024-04-25 16:06:18 +00:00
|
|
|
// Page title
|
|
|
|
$sitetitle = 'Szybkie skracanie linków';
|
|
|
|
$shorttitle = 'QUrl.pl';
|
|
|
|
$slogan = 'Szybkie, wygodne i darmowe skracenie linków';
|
|
|
|
|
|
|
|
// Meta description
|
|
|
|
$description = 'Szybkie, wygodne i darmowe skracenie linków ze statystykami';
|
|
|
|
|
|
|
|
// Meta keywords
|
|
|
|
$keywords = 'skracacz linkow, tiny link, tiny url, skracanie linków,';
|
|
|
|
|
2024-04-25 18:23:48 +00:00
|
|
|
// Theme language
|
2024-04-25 16:06:18 +00:00
|
|
|
$lang = "PL-pl";
|
|
|
|
|
|
|
|
// Logo
|
|
|
|
$logo = "qurl/img/QUrl_logo.png";
|
|
|
|
|
|
|
|
// Google robots tag
|
|
|
|
// More info: https://developers.google.com/search/docs/crawling-indexing/robots-meta-tag
|
|
|
|
$robots = 'index, nofollow';
|
|
|
|
|
|
|
|
// Google reCAPTCHA V3
|
|
|
|
// More info: https://developers.google.com/recaptcha
|
2024-04-25 18:47:48 +00:00
|
|
|
$recaptchaSiteKey = 'xxxxxxxxxxxxxx';
|
|
|
|
$recaptchaSecretKey = 'xxxxxxxxxxxxxx';
|
2024-04-25 16:06:18 +00:00
|
|
|
|
|
|
|
// Email send settings
|
|
|
|
// Sending emails using the PHPMailer library. More info: https://github.com/PHPMailer/PHPMailer
|
|
|
|
$emailHost = 'mail.mydomain.com';
|
|
|
|
$emailSMTPAuth = 'true';
|
|
|
|
$emailUsername = 'kontakt@mydomain.com';
|
|
|
|
$emailPassword = 'password';
|
|
|
|
$emailSMTPSecure = 'PHPMailer::ENCRYPTION_SMTPS';
|
|
|
|
$emailPort = '465';
|
|
|
|
$emailFromName = 'QUrl.pl - Kontakt';
|
|
|
|
$emailFromAddress = 'kontakt@mydomain.com';
|
|
|
|
|
|
|
|
// These are the links in the header and footer. Add a new link for each new link.
|
|
|
|
// The array follows a title link structure:
|
|
|
|
// 'TITLE' => 'LINK',
|
|
|
|
// How to add pages to YOURLS: https://yourls.org/docs/guide/extend/pages
|
|
|
|
|
|
|
|
$headerLinks = [
|
|
|
|
'O stronie' => '/about',
|
|
|
|
'Zasady' => '/rules',
|
|
|
|
'FAQ' => '/faq'
|
|
|
|
];
|
|
|
|
|
|
|
|
$footerLinks = [
|
|
|
|
'O stronie' => '/about',
|
|
|
|
'Zasady' => "/rules",
|
|
|
|
'FAQ' => '/faq',
|
|
|
|
'Ciasteczka' => '/cookies',
|
|
|
|
'Kontakt' => '/contact',
|
|
|
|
'<span class="text-danger"><i class="bi bi-exclamation-triangle"></i> Zgłoś link</span>' => '/report'
|
|
|
|
];
|
|
|
|
|
|
|
|
// #########################################
|
|
|
|
// ## ##
|
|
|
|
// ## You edit the code below at your ##
|
|
|
|
// ## own risk ##
|
|
|
|
// ## ##
|
|
|
|
// #########################################
|
|
|
|
|
2024-04-25 18:23:48 +00:00
|
|
|
// Load translation file
|
2024-04-25 16:06:18 +00:00
|
|
|
$qurlLang = require 'lang/' . $lang . '_qurl.php';
|
|
|
|
|
|
|
|
?>
|