PHP code example of archlinux-de / flarum-theme-archlinux

1. Go to this page and download the library: Download archlinux-de/flarum-theme-archlinux library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

archlinux-de / flarum-theme-archlinux example snippets


 return [
    // ...
    'arch' => [
        'home' => 'https://www.archlinux.de/',
        'navbar' => [
            'Start' => 'https://www.archlinux.de/',
            'Pakete' => 'https://www.archlinux.de/packages',
            'Forum' => 'https://forum.archlinux.de/',
            'Wiki' => 'https://wiki.archlinux.de/title/Hauptseite',
            'AUR' => 'https://aur.archlinux.de/',
            'Download' => 'https://www.archlinux.de/download'
        ],
        'navbar_selected' => 'Forum',
        'footer' => [
            'Datenschutz' => 'https://www.archlinux.de/privacy-policy',
            'Impressum' => 'https://www.archlinux.de/impressum'
        ]
    ]
];