-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml
57 lines (46 loc) · 1.01 KB
/
config.yaml
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
# Likho Configuration File
# Logging Settings
logging:
level: "info" # Possible values: debug, info, warn, error
# Site Information
site:
title: "My Awesome Blog"
description: "A static site generated with Likho"
base_url: "https://example.com"
language: "en"
# Author Information
author: "John Doe <[email protected]>"
# Content Settings
content:
source_dir: "content"
posts_dir: "posts"
output_dir: "public"
templates_dir: "templates"
pages_dir: "pages"
posts_per_page: 10
# Theme Settings
theme:
name: "default"
syntax_highlighting: true
# Build Settings
build:
draft: false
future: false
# Server Settings
server:
port: 8080
host: "localhost"
# Social Media Links
social:
twitter: "https://twitter.com/username"
github: "https://github.com/username"
linkedin: "https://linkedin.com/in/username"
# Additional Features
features:
comments: false
search: true
rss: true
# Custom Variables
custom:
google_analytics: "UA-XXXXXXXXX-X"
disqus_shortname: "your-disqus-shortname"