Skip to content
This repository was archived by the owner on Oct 23, 2020. It is now read-only.

Commit 44b154d

Browse files
committed
add missing config in config-sample.py
1 parent cb6f6cf commit 44b154d

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

config-sample.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
site_description = 'a blog'
44
site_url = 'https://github.com/whtsky/catsup'
55

6+
# Home page display full content or excerpt
7+
#excerpt_index = True
8+
69
# comment system
710
comment_system = 'disqus'
811
disqus_shortname = 'catsup'

utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ def load_config(filename='config.py'):
2929
static_url='static',
3030
theme_name='sealscript',
3131
google_analytics='',
32-
date_in_permalink=True
32+
date_in_permalink=True,
33+
excerpt_index=False
3334
)
3435

3536
execfile(filename, {}, config)

0 commit comments

Comments
 (0)