diff options
author | Huy-Ngo <duchuy29092000@gmail.com> | 2021-01-10 12:02:49 +0700 |
---|---|---|
committer | Huy-Ngo <duchuy29092000@gmail.com> | 2021-01-10 12:02:49 +0700 |
commit | 00623d0c7e56ee7f43abaa22be8b609f6ac6d4a7 (patch) | |
tree | f7681d92f7fe63729412cf4d47093fbb0f936cd4 | |
parent | ff2a8653b3b213fa373bfdda4fb481e0d6a1757c (diff) | |
download | blog-00623d0c7e56ee7f43abaa22be8b609f6ac6d4a7.tar.gz |
Exclude nonblog sites
-rw-r--r-- | _config.yml | 29 |
1 files changed, 18 insertions, 11 deletions
diff --git a/_config.yml b/_config.yml index f753d5c..a541f1e 100644 --- a/_config.yml +++ b/_config.yml @@ -31,6 +31,8 @@ mastodon: instance: fosstodon.org github_username: Huy-Ngo +timezone: Asia/Ho_Chi_Minh + # Build settings theme: minima plugins: @@ -44,14 +46,19 @@ plugins: # Excluded items can be processed by explicitly listing the directories or # their entries' file path in the `include:` list. # -# exclude: -# - .sass-cache/ -# - .jekyll-cache/ -# - gemfiles/ -# - Gemfile -# - Gemfile.lock -# - node_modules/ -# - vendor/bundle/ -# - vendor/cache/ -# - vendor/gems/ -# - vendor/ruby/ +exclude: + - .sass-cache/ + - .jekyll-cache/ + - gemfiles/ + - Gemfile + - Gemfile.lock + - node_modules/ + - vendor/bundle/ + - vendor/cache/ + - vendor/gems/ + - vendor/ruby/ + - README.md + - .gitignore + - .git/ + - LICENSE + - newpost.sh |