<?php
// CRELAB MICROBLOGGING - MADE SIMPLE
///////////////////////
// Adminpassword
///////////////////////
$Password = "admin";
///////////////////////
// Adminpassword
///////////////////////
$title = "crelab.de - simple blog";
$subtitle = "adminpassword: admin, just look around.";
///////////////////////
// LANGUAGE
///////////////////////
$writtenon = "Geschrieben am:"; // Eng: Written on:
$writtenby = "von:"; // Eng: by:
$filecounttext1 = "Es wurden bereits "; // Eng: There are
$filecounttext2 = " Einträge geschrieben"; // Eng: Entrys in Database.
///////////////////////
// DO NOT EDIT
///////////////////////
$whichstyle = file("style/styles.txt");
$style = implode("",$whichstyle);
if ($style == "Blue") {
$choosenStyle = "<link href='style/blue/style.css' rel='stylesheet' type='text/css' />";
}
elseif ($style == "Red") {
$choosenStyle = "<link href='style/red/style.css' rel='stylesheet' type='text/css' />";
}
elseif ($style == "Grey") {
$choosenStyle = "<link href='style/grey/style.css' rel='stylesheet' type='text/css' />";
}
?>