-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefaults.php
More file actions
61 lines (41 loc) · 1.82 KB
/
defaults.php
File metadata and controls
61 lines (41 loc) · 1.82 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
51
52
53
54
55
56
57
58
59
60
61
<?php
# User configuration file
###########################################################
### Enable or disable mods here ###
# FlatView removes borders around pages, which creates an overall flat design experience.
$FlatView = FALSE;
# HiddenLogin hides the login button, you can still access the login page with Alt+L.
$HiddenLogin = FALSE;
# TopNav adds the page navigation to the top of each page.
$TopNav = FALSE;
# This will make the search bar at the top square.
$SquareSearch = FALSE;
# This will remove various hover coloring on UI elements, the opacity will still change.
$NoBgColorOnHover = FALSE;
# Makes cards round.
$RoundCards = FALSE;
# Makes icons and text bigger and removes the background circle.
$BiggerIcons = FALSE;
# This changes the dark mode to use black as background, text is slightly brighter.
$DarkestMode = FALSE;
# Makes callouts look more like markdown alerts on GitHub.
$SimplerCallouts = FALSE;
# Adds (y), <3 and (wow) that will turn into icons, when typed into a page.
$ComplimentIcons = FALSE;
# Makes button elements have a bold font.
$BoldButtons = FALSE;
# Adds OpenGraph meta to the head, containing cover image and text.
$OpenGraph = FALSE;
# Makes the sidebars always full opacity.
$FullOpacity = FALSE;
# Replaces Shelves, Books, Chapters with Categories, Topics and Sections (english only).
$CategoriesAndTopics = FALSE;
# Adds a search bar to smaller screen widths.
$MobileSearchBar = FALSE;
# Hides UI sections that contain no items.
$HideEmptySections = FALSE;
# This makes BookStack switch between list and grid view, based on screen width.
$ResponsiveViews = FALSE;
# Increases the font of the page content
$LargerContent = FALSE;
?>