-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.php
50 lines (41 loc) · 3.05 KB
/
config.php
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
$BLOG_LINK = 'https://nithou.net/sandbox/'; // The address of your blog ending by a / like: https://example.com/
$BLOG_TITLE = 'The Title'; // Replace by your blog title
$BLOG_TAGLINE = 'your blog tagline, goes after the title'; // Replace by your blog tagline or leave empty
$BLOG_DESCRIPTION = 'your blog description'; // Will be shown when sharing links from your blog
// Mainly used for RSS
$BLOG_AUTHOR = 'your name'; // Your name or nickname
$FEDIVERSE_CREATOR = '@[email protected]'; // Your full Fediverse identifier (for meta tags)
$AUTHOR_EMAIL = 'your email'; // Your email
$AUTHOR_DESCRIPTION = 'your description'; // Will be displayed at the bottom of the post. Upload an author.jpg into the /assets/img folder
// Here you can change the colors, some good ideas here http://a11yrocks.com/colorPalette/ and here https://www.randoma11y.com/
// Light Mode colors
$LIGHT_BACKGROUND = '#ffebd4'; // Background for light mode
$LIGHT_TEXT = '#0c0014'; // Color of the text for light mode
$LIGHT_LINKS = '#ad6f28'; // Color of the links when hovering for light mode
// Dark Mode colors
$DARK_BACKGROUND = '#0c0014'; // Background for dark mode
$DARK_TEXT = '#ffebd4'; // Color of the text for dark mode
$DARK_LINKS = '#ad6f28'; // Color of the links when hovering for dark mode
// Webmentions system to display external reactions see https://webmention.io/
$WEBMENTIONS = false;
$WEBMENTIONSLINK = '';
$PINGBACK = '';
// Add Commento support
$COMMENTO = false;
$COMMENTO_URL = 'https://cdn.commento.io/js/commento.js';
// Add Kudos support
$KUDOS = true;
// If your blog isn't in English
$LANG = 'en'; // Two code language of your blog lang
$LINKTO = 'direct link'; // Displayed at the bottom of the posts
$BACKTO = 'back to the list'; // Displayed when on a post or page
$HOME = 'home'; // Back to the home
$MOREPOSTS = 'see all posts'; // Text that links to the archive page
// Only show summary in home
$SHOW_SUMMARY = false; // Change to true if you want to only display a short summary in home
$POST_LIMIT = 10; // Limit the amount of posts you want to display on the homepage
// Here you can change how titles & texts look see https://developer.mozilla.org/en-US/docs/Web/CSS/font-family
$TITLES = '"Helvetica Neue", "Arial Nova", Helvetica, "Liberation Sans", "Roboto", Arial, "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", "Mplus 1p", "Hiragino Sans", "Hiragino Kaku Gothic Pro", "游ゴシック" , "游ゴシック体" , YuGothic , "Yu Gothic", "MS ゴシック" , "MS Gothic", system-ui, sans-serif'; // Default fonts for the titles
$TEXTS = 'Cambria, "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", "Mplus 1p", "Hiragino Sans", "Hiragino Kaku Gothic Pro", "游ゴシック" , "游ゴシック体" , YuGothic , "Yu Gothic", "MS ゴシック" , "MS Gothic", serif'; // Default fonts for the texts
?>