2015-03-27 07:04:23 +01:00
|
|
|
<?php
|
2015-12-18 21:59:34 +01:00
|
|
|
/**
|
|
|
|
* PHP Version 5.6
|
|
|
|
*
|
|
|
|
* Rangitaki Project
|
|
|
|
* This is the configuration file. You can configure here all necessary
|
|
|
|
* (and possible) options without editing the index.php file.
|
|
|
|
* Every line has an description about what you can change here.
|
|
|
|
* Don't delete any strings. You can set your value after the '=' sign
|
|
|
|
* and between the apostrophes.
|
|
|
|
*
|
|
|
|
* Make sure that every line ends with an semicolon (';').
|
|
|
|
*
|
|
|
|
* @category Config
|
|
|
|
* @package Rbe
|
|
|
|
* @author Marcel Kapfer (mmk2410) <marcelmichaelkapfer@yahoo.co.nz>
|
|
|
|
* @license MIT License
|
|
|
|
* @link http://marcel-kapfer.de/rangitaki
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Blog Title / Set here an individual title of yourblog by replacing
|
|
|
|
// Rangitaki Blog with it.
|
|
|
|
$blogtitle = 'Example Blog';
|
|
|
|
|
2015-07-05 18:02:19 +02:00
|
|
|
// Blog Author - Set here your name
|
2015-12-18 21:59:34 +01:00
|
|
|
$blogauthor = 'John';
|
|
|
|
|
2015-03-27 07:04:23 +01:00
|
|
|
// Blog description
|
2015-12-18 21:59:34 +01:00
|
|
|
$blogdescription = 'A short description of your blog';
|
|
|
|
|
2015-03-27 07:04:23 +01:00
|
|
|
// Home - set yes if you want to link to your homepage and no if not
|
|
|
|
$bloghome = 'yes';
|
2015-12-18 21:59:34 +01:00
|
|
|
|
|
|
|
// Home URL - Set here the url to your main page. Either as a path (e.g. '../')
|
|
|
|
// or as an url (e.g. 'http://github.com')
|
2015-03-27 07:04:23 +01:00
|
|
|
$bloghomeurl = '../';
|
2015-12-18 21:59:34 +01:00
|
|
|
|
2015-03-27 07:04:23 +01:00
|
|
|
// Home name - Set here an individual name for your main page
|
|
|
|
$bloghomename = 'Home';
|
2015-12-18 21:59:34 +01:00
|
|
|
|
2015-12-06 15:19:16 +01:00
|
|
|
// Main Blog name -> Set a specific name for your main blog
|
2015-07-03 10:21:20 +02:00
|
|
|
// This value is empty by default
|
|
|
|
$blogmainname = '';
|
2015-12-18 21:59:34 +01:00
|
|
|
|
2015-06-10 18:41:51 +02:00
|
|
|
// Intro - set yes if you have a blog intro and no if you don't have one
|
2015-03-27 07:04:23 +01:00
|
|
|
$blogintro = 'yes';
|
2015-12-18 21:59:34 +01:00
|
|
|
|
|
|
|
// Disqus - Provide here your Disqus shortname. Leave empty if you don't
|
|
|
|
// want to use it.
|
2015-06-10 18:41:51 +02:00
|
|
|
$blogdisqus = 'rangitaki';
|
2015-12-18 21:59:34 +01:00
|
|
|
|
2015-07-03 14:37:32 +02:00
|
|
|
// Share FAB - this enables or disables the share button
|
|
|
|
$sharefab = 'yes';
|
2015-12-18 21:59:34 +01:00
|
|
|
|
|
|
|
// Google Analytics - Provide here your Google Analytics Tracking-ID. Leave
|
|
|
|
// empty if you don't want to use it.
|
2015-06-11 11:39:54 +02:00
|
|
|
$bloganalytics = '';
|
2015-12-18 21:59:34 +01:00
|
|
|
|
|
|
|
// Footer - set here the text for your footer (e.g. a copyright info). You can
|
|
|
|
// replace the whole text after the '=' with your own one.
|
|
|
|
$blogfooter = 'Rangitaki ' . date("Y") .
|
|
|
|
' <a href="https://github.com/mmk2410/Rangitaki" target="blank">
|
|
|
|
github.com/mmk2410/Rangitaki</a>';
|
|
|
|
|
|
|
|
// This enables the optional rangitaki control center. Please read the
|
|
|
|
// documentation before you enable it.
|
2015-11-17 22:46:20 +01:00
|
|
|
$rcc = 'yes';
|
2015-12-18 21:59:34 +01:00
|
|
|
|
|
|
|
// Here you can disable and enable the navigation menu. Usefull if you have
|
|
|
|
// no subblogs and no home directory
|
2015-06-15 11:27:57 +02:00
|
|
|
$nav_drawer = 'yes';
|
2015-12-18 21:59:34 +01:00
|
|
|
|
2015-06-18 20:45:49 +02:00
|
|
|
// Set here the name of your theme. Read the documentation for more themes
|
2015-12-20 19:19:41 +01:00
|
|
|
$theme = 'material-light';
|
2015-12-18 21:59:34 +01:00
|
|
|
|
2015-07-03 11:19:40 +02:00
|
|
|
// Set here your language. The file must exist in the lang directory
|
2015-07-05 18:02:19 +02:00
|
|
|
$language = "en";
|
2015-12-18 21:59:34 +01:00
|
|
|
|
|
|
|
// pagination: how many articles should be on one page
|
|
|
|
// set to 0 to disable it
|
2015-12-20 19:19:41 +01:00
|
|
|
$pagination = 0;
|
2015-12-18 21:59:34 +01:00
|
|
|
|
2015-07-05 18:02:19 +02:00
|
|
|
// Favicon - Set here the path to your favicon
|
2015-12-18 21:59:34 +01:00
|
|
|
$favicon = "http://example.com/res/img/favicon.png";
|