Commit Graph

228 Commits

Author SHA1 Message Date
Julian Prieber
02bec65724 Changed name of config file 2022-06-09 22:26:35 +02:00
Julian Prieber
6e9bad6751 Renamed meta.php to config.php 2022-06-09 19:08:37 +02:00
Julian Prieber
4996976975 Update sidebar.blade.php 2022-06-09 18:04:40 +02:00
Julian Prieber
76c484f018 Added option to change text on "Home" link 2022-06-09 17:41:44 +02:00
Julian Prieber
09aea659c8 Fixed favicon on register and login page 2022-06-09 17:16:31 +02:00
Julian Prieber
93e2832614 Update home.blade.php 2022-06-09 14:58:07 +02:00
Julian Prieber
e4abf3ed18 Added option to apply theme to Home Page 2022-06-09 14:41:26 +02:00
Julian Prieber
a83d00a628 Added option to change footer links and texts 2022-06-09 12:33:23 +02:00
Julian Prieber
a3262e35ab Added option to edit buttons on home page
/*
    |--------------------------------------------------------------------------
    | Custom Buttons on Home Page
    |--------------------------------------------------------------------------
    |
    | Here you can configure your own buttons for the Home Page.
    | You can add or remove as many buttons as you like.
    |
    | The syntax of the custom buttons is as follows:
    |
    |       array(
    |         'button' => '',
    |         'link' => '',
    |         'title' => '',
    |         'icon' => '',
    |         'custom_css' => ''
    |       ),
    |
    | In the 'button' field, you have to enter the button name (i.e. 'twitter', 'github', 'custom'...).
    | You can find a list of all available buttons below.
    |
    | In the 'link' field, can enter your desired link you can leave this field empty for a display only, non-functional button.
    |
    |
    |
    | The input fields below only apply to buttons such as 'custom' and 'custom_website' but must always be included even if only empty.
    |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    |
    | In the 'title' field, changes the text on a button, such as 'custom' and 'custom_website'.
    |
    | In the 'icon' field, uses the same syntax as the Button Editor on the Admin Panel.
    | This allows you to add your own icons to 'custom' buttons. You can find a list of available icons on llc.bio/fa.
    |
    | In the 'custom_css' field, here you can enter custom CSS to change the color of your button.
    | If you don't feel comfortable working with CSS,
    | you can copy and paste the CSS from the 'Custom CSS' field of the Button Editor on the Admin Panel.
    |
    */

    'use_custom_buttons'  => 'true', // Set this to false if you wish to display the old buttons.

    'buttons' => array(
      array(
        'button' => 'github',
        'link' => 'https://github.com/JulianPrieber/littlelink-custom',
        'title' => '',
        'icon' => '',
        'custom_css' => ''
      ),
      array(
          'button' => 'custom',
          'link' => 'https://littlelink-custom.com',
          'title' => 'Project Website',
          'icon' => 'llc',
          'custom_css' => 'color:#ffffff; background-image:linear-gradient(76deg, #f70fff 0%, #11d4de 100%);'),
      array(
        'button' => 'custom',
        'link' => 'https://littlelink-custom.com/sponsor',
        'title' => 'Help us out',
        'icon' => 'fa-hand-holding-hand',
        'custom_css' => 'color:#ffffff; background-image:radial-gradient(circle, #00d2ff 0%, #3a7bd5 95%);'
      ),
    )

    /*
    |--------------------------------|
    | List of Available buttons:     |
    |--------------------------------|
    | 'button' => 'custom'           |
    | 'button' => 'custom_website'   |
    | 'button' => 'github'           |
    | 'button' => 'twitter'          |
    | 'button' => 'instagram'        |
    | 'button' => 'facebook'         |
    | 'button' => 'messenger'        |
    | 'button' => 'linkedin'         |
    | 'button' => 'youtube'          |
    | 'button' => 'discord'          |
    | 'button' => 'twitch'           |
    | 'button' => 'snapchat'         |
    | 'button' => 'spotify'          |
    | 'button' => 'reddit'           |
    | 'button' => 'medium'           |
    | 'button' => 'pinterest'        |
    | 'button' => 'soundcloud'       |
    | 'button' => 'figma'            |
    | 'button' => 'kit'              |
    | 'button' => 'telegram'         |
    | 'button' => 'tumblr'           |
    | 'button' => 'steam'            |
    | 'button' => 'vimeo'            |
    | 'button' => 'wordpress'        |
    | 'button' => 'goodreads'        |
    | 'button' => 'skoob'            |
    | 'button' => 'tiktok'           |
    | 'button' => 'default email'    |
    | 'button' => 'default email_alt'|
    | 'button' => 'bandcamp'         |
    | 'button' => 'patreon'          |
    | 'button' => 'signal'           |
    | 'button' => 'venmo'            |
    | 'button' => 'cashapp'          |
    | 'button' => 'gitlab'           |
    | 'button' => 'mastodon'         |
    | 'button' => 'paypal'           |
    | 'button' => 'whatsapp'         |
    | 'button' => 'xing'             |
    | 'button' => 'buy me a coffee'  |
    | 'button' => 'website'          |
    | 'button' => 'heading'          |
    | 'button' => 'space'            |
    |--------------------------------|
    */
2022-06-09 09:59:04 +02:00
Julian Prieber
032162cdbf Added option to hide share button 2022-06-08 20:26:21 +02:00
Julian Prieber
29bee9b62b Update sidebar.blade.php 2022-06-08 17:52:21 +02:00
Julian Prieber
edbdd98649 Update phpinfo.blade.php 2022-06-08 17:37:52 +02:00
Julian Prieber
d377d3d406 Update guest.blade.php 2022-06-08 17:28:26 +02:00
Julian Prieber
5e23002b58 Fixed color scheme not applying 2022-06-08 17:24:51 +02:00
Julian Prieber
a36e985bfc Added overwrite for default color scheme
Overwrites default theme regardless of preference defined by the operating system, unless manually overwritten by user.

Either "dark" or "light".
2022-06-08 17:09:24 +02:00
Julian Prieber
8639c44fa8 Fixed formatting bug 2022-06-08 16:45:03 +02:00
Julian Prieber
75d7e84567 Updated analytics layout 2022-06-08 16:38:52 +02:00
Julian Prieber
af284a58c2 Added analytics support to all pages 2022-06-08 15:58:04 +02:00
Julian Prieber
1884e3237e Fixed bug "lang default" 2022-06-08 15:55:55 +02:00
Julian Prieber
ca86582157 Added support for custom meta tags
Added support for custom meta tags via a new config file.
Custom meta tags will only be active if "CUSTOM_META_TAGS" is set to "true" in the config.

Replaced "<html lang="en">" with "@include('layouts.lang')" meaning HTML lang can be changed in the new config, defaults to en if not active or not defined.
2022-06-08 15:43:51 +02:00
Julian Prieber
58d6be2882 Fixed version detection not working 2022-06-01 21:06:47 +02:00
Julian Prieber
3519a37217 Added BETA notice to sidebar 2022-06-01 18:36:53 +02:00
Julian Prieber
7daf7b6e75 Switched share button icon to Font Awesome 2022-05-31 23:29:27 +02:00
Julian Prieber
7b67d8c1f6 Expanded theme background options
Added new blank divs to allow for more complex parralax and other backgrounds
2022-05-31 20:32:58 +02:00
Julian Prieber
a0950990d4 Fixed Theme Credit page links 2022-05-31 14:47:29 +02:00
Julian Prieber
f2103464d4 Fixed spacing 2022-05-31 14:16:05 +02:00
Julian Prieber
e98d942b04 Added Theme Credit page
A short page that displays the contents of a Theme's readme.md.

Currently, a link to this page is only visible in the HTML meta tags if viewed as page source.
This page can always be accessed on your.domain.com/theme/@littlelink_name.
(For example your.domain.com/theme/@admin)
2022-05-31 14:11:26 +02:00
Julian Prieber
1fd768057f Update updater.blade.php 2022-05-31 12:32:36 +02:00
Julian Prieber
b445eb85ff Re-implemented footer hover animations 2022-05-30 23:10:08 +02:00
Julian Prieber
42c284e865 Update button-editor.blade.php 2022-05-30 18:10:35 +02:00
Julian Prieber
5a389dd243 Re-implemented entrance animation 2022-05-30 17:52:12 +02:00
Julian Prieber
cfd7445766 Fixed animation timing 2022-05-30 17:47:31 +02:00
Julian Prieber
39f322bd86 Added custom animation support to Themes 2022-05-30 17:29:14 +02:00
Julian Prieber
217201fa66 Update users.blade.php 2022-05-30 15:18:17 +02:00
Julian Prieber
35f59acf91 Update users.blade.php 2022-05-30 15:11:01 +02:00
Julian Prieber
2dc3e3d185 Added option for admins to view and delete user links 2022-05-30 15:02:27 +02:00
Julian Prieber
dfe0a0326b Update update.blade.php 2022-05-30 12:10:11 +02:00
Julian Prieber
336427b278 Update update.blade.php 2022-05-30 12:07:07 +02:00
Julian Prieber
2f2ad0839b Update update.blade.php 2022-05-30 11:48:05 +02:00
Julian Prieber
54035ce5c4 Added skip backup on update option
Added skip backup on update option to config
2022-05-30 11:39:39 +02:00
Julian Prieber
5b73de7584 Update update.blade.php 2022-05-30 10:50:01 +02:00
Julian Prieber
d1d8586b32 Update update.blade.php 2022-05-30 10:42:40 +02:00
Julian Prieber
15b2a03035 Update sidebar.blade.php 2022-05-28 16:32:53 +02:00
Julian Prieber
abe3a993b1 Update sidebar.blade.php 2022-05-28 16:07:19 +02:00
Julian Prieber
4739567743 Update sidebar.blade.php 2022-05-28 15:52:45 +02:00
Julian Prieber
0e257ef8ab Updated update notification system
Made NOTIFY_UPDATES=all and NOTIFY_UPDATES=major use the same version source file to prevent GitHub API limit from being reached.
2022-05-28 15:49:29 +02:00
Julian Prieber
c21db40809 Added beta support to updater 2022-05-28 14:03:49 +02:00
Julian Prieber
8b7929dfa8 Update update.blade.php 2022-05-26 12:12:29 +02:00
Julian Prieber
909c11263f Update update.blade.php 2022-05-26 11:40:13 +02:00
Julian Prieber
f60ff94f6d Update pages.blade.php 2022-05-26 11:21:55 +02:00