-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconf.php
More file actions
51 lines (34 loc) · 1.67 KB
/
conf.php
File metadata and controls
51 lines (34 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php;
// ************************************************************************** //
// Project: Code.db0 //
// Description: Configuration file for a simple web-based code viewer //
// Author: db0 (db0company@gmail.com, http://db0.fr/) //
// Latest Version is on GitHub: https://github.com/db0company/Code.db0 //
// ************************************************************************** //
// ************************************************************************** //
// Requiered configurations //
// ************************************************************************** //
// General Informations
$title = ucfirst(str_replace('.', ' . ', $_SERVER['SERVER_NAME']));
$description = 'Lorem ipsum';
$author = 'db0';
$author_contact = 'db0company@gmail.com';
$author_website = 'http://db0.fr/';
// Paths
$projects_path = './projects/';
$bootstrap_path = './bootstrap/';
$jquery_path = './jquery.js';
// Logo and Favicon
$logo = 'example/logo.png';
$favicon = 'example/favicon.ico';
// ************************************************************************** //
// Bonus configurations //
// ************************************************************************** //
// Filename pattern matching for file to ignore (will not be showned at all)
// (wildcard pattern matching)
$ignore = array('.*');
// How to order your projects?
// Available values: 'date', 'random', 'name', 'langage'
$order_by = 'name';
// Maximum lenght of projects descriptions in character
$max_descr = 150;