HEX
Server: Apache/2.4.65 (Debian)
System: Linux kubikelcreative 5.10.0-35-amd64 #1 SMP Debian 5.10.237-1 (2025-05-19) x86_64
User: www-data (33)
PHP: 8.4.13
Disabled: NONE
Upload Files
File: //usr/local/usermin-1.750/authentic-theme/settings.pm
#
# Authentic Theme (https://github.com/authentic-theme/authentic-theme)
# Copyright Ilia Rostovtsev <programming@rostovtsev.io>
# Licensed under MIT (https://github.com/authentic-theme/authentic-theme/blob/master/LICENSE)
#
use strict;

theme_settings('exclusions', undef, undef);
my @settings = theme_settings('get', undef, undef);
print theme_settings('header', undef, undef);
for (my $i = 0; $i < scalar(@settings) - 1; $i += 2) {
    if ($settings[$i] ne '__') {
        print theme_settings('content', $settings[$i], $settings[$i + 1]);
    } else {
        my @section = split(/\~/, $settings[$i + 1]);
        print theme_settings('section', $section[0], $section[1]);
    }
}
print theme_settings('footer', undef, undef);

1;