blob: c4e29b6984382fcefb2eae504e441c9bc2d23cc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
// Your site title and meta description
$site_title = 'PHPetite';
$site_desc = 'A single file, static blog generated from PHP';
$site_url = 'https://phpetite.btxx.org';
$site_author = 'Bradley Taunt';
$site_email = 'bt@btxx.org';
// Activate or disable images to base64 strings
$images_to_base64 = true;
// You probably don't need to change these :P
$site_style = 'style.css';
$site_icon = 'content/img/icon.png';
?>
|