2015-03-27 07:04:23 +01:00
< ? php
// 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 (';').
2015-06-10 18:41:51 +02:00
// Blog Title - Set here an individual title of your blog by replacing Rangitaki Blog with it.
2015-06-10 12:45:02 +02:00
$blogtitle = 'Rangitaki Blog' ;
2015-03-27 07:04:23 +01:00
// Blog Author - Set here your name
$blogauthor = 'Marcel Kapfer' ;
// Blog description
2015-06-10 18:41:51 +02:00
$blogdescription = 'Rangitaki - A PHP blog engine without any database dependency' ;
// Blog favicon - enter here the path to your favicon
$blogfavicon = '../res/favicon.png' ;
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-06-11 11:39:54 +02:00
// Home URL - Set here the url to your main page. Either relative (e.g. '../') or absolute (e.g. 'http://github.com')
2015-03-27 07:04:23 +01:00
$bloghomeurl = '../' ;
// Home name - Set here an individual name for your main page
$bloghomename = 'Home' ;
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-06-10 18:41:51 +02:00
// Disqus - Provide here your Disqus shortname. Leave empty if you don't want to use it.
$blogdisqus = 'rangitaki' ;
// 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-03-27 07:04:23 +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.
2015-06-10 18:41:51 +02:00
$blogfooter = 'Rangitaki ' . date ( " Y " ) . ' <a href="https://github.com/mmk2410/Rangitaki" target="blank">github.com/mmk2410/Rangitaki</a>' ;
2015-06-14 11:57:25 +02:00
// This enables the optional online post upload. Please read the documentation before you enable it.
$post_upload = 'no'
2015-03-27 07:04:23 +01:00
?>