~quam-plures-core/quam-plures/hic-sunt-dracones

5896 by fplanque
cleaner urls by default
1
<?php
2
/**
7380.4.6 by Tilman Blumenbach
Replaced some more b2evo references (widely visible code comments)
3
 * This is a stub file for displaying a Quam Plures blog.
5896 by fplanque
cleaner urls by default
4
 *
5
 * A stub file is used to anchor a particular blog in a particular location of your website.
6
 * More info: {@link http://manual.b2evolution.net/Stub_file}
7
 *
7380.4.7 by Tilman Blumenbach
Changing file headers, part 3.1
8
 * Quam Plures - {@link http://quamplures.net/}
7380.4.26 by Tilman Blumenbach
Reverted all GPL links to quamplures.net URLs
9
 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
7380.4.16 by Tilman Blumenbach
Added copyright notices
10
 * @copyright (c) 2009 by the Quam Plures developers - {@link http://quamplures.net/}
6731 by fplanque
2009
11
 * @copyright (c)2003-2009 by Francois PLANQUE - {@link http://fplanque.net/}
7381.2.5 by EdB
HTML-Kit knows to save as Unix, and in theory bzr knows to use LFs via a rule. So this time it is all the files in the root directory (blug stubs, index, admin, ...).
12
 *
13
 * @package pond
5896 by fplanque
cleaner urls by default
14
 */
15
16
# First, select which blog you want to display here!
17
# You can find these numbers in the back-office under the Blogs section.
18
# You can also create new blogs over there. If you do, you may duplicate this file for the new blog.
19
$blog = 3;
20
7394.1.1 by EdB
the commit message
21
# You could *force* a specific template here with this setting: (otherwise, default will be used)
22
# $template = 'custom';
5896 by fplanque
cleaner urls by default
23
24
# This setting retricts posts to those published, thus hiding drafts.
25
# You should not have to change this.
26
$show_statuses = array();
27
28
# Here you can set a limit before which posts will be ignored
29
# You can use a unix timestamp value or 'now' which will hide all posts in the past
30
$timestamp_min = '';
31
32
# Here you can set a limit after which posts will be ignored
33
# You can use a unix timestamp value or 'now' which will hide all posts in the future
34
$timestamp_max = 'now';
35
36
# Additionnaly, you can set other values (see URL params in the manual)...
37
# $order = 'ASC'; // This for example would display the blog in chronological order...
38
39
/**
7380.4.6 by Tilman Blumenbach
Replaced some more b2evo references (widely visible code comments)
40
 * That's it, now let Quam Plures do the rest! :)
5896 by fplanque
cleaner urls by default
41
 * Note: if you put this file in a subdirectory, you will need to adjust the path below, for example:
42
 * require_once dirname(__FILE__).'/../conf/_config.php';
43
 */
44
require_once dirname(__FILE__).'/conf/_config.php';
45
46
require $inc_path.'_blog_main.inc.php';
7380.4.6 by Tilman Blumenbach
Replaced some more b2evo references (widely visible code comments)
47
?>