2019-09-30 20:38:41 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
Automatic invokes all initial scripts for project.
|
2020-01-02 21:17:49 +08:00
|
|
|
v2.0
|
|
|
|
https://github.com/cotes2020/jekyll-theme-chirpy
|
2019-09-30 20:38:41 +08:00
|
|
|
© 2018-2019 Cotes Chung
|
|
|
|
Licensed under MIT
|
|
|
|
"""
|
|
|
|
|
|
|
|
import update_posts_lastmod
|
|
|
|
import pages_generator
|
|
|
|
|
|
|
|
|
|
|
|
update_posts_lastmod
|
|
|
|
|
|
|
|
pages_generator
|