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