kaka.farm

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 3b99258be9ed2bbacb104c125daf9fd38b91caea
parent 8e403d87429c0a27f144fb7f1ce9d3b8d1561af6
Author: Yuval Langer <yuval.langer@gmail.com>
Date:   Tue, 29 May 2018 20:01:53 +0300

Sort the table of contents and add a clean function

Diffstat:
MMakefile | 4+++-
Mmkdocs.yml | 32+++++++++++++++++++++++++++++---
2 files changed, 32 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile @@ -6,4 +6,6 @@ build: serve: pipenv run mkdocs serve -s publish_on_kaka_farm: build - rsync -Pav public/ $(PUBLISH_TO_KAKA_FARM_TARGET) + rsync -Pav public/ $(KAKA_FARM_SERVER):$(KAKA_FARM_BLOG_PATH) +clean_kaka_farm: + ssh $(KAKA_FARM_SERVER) rm -rvf $(KAKA_FARM_BLOG_PATH) diff --git a/mkdocs.yml b/mkdocs.yml @@ -1,8 +1,34 @@ +# Project information +# https://www.mkdocs.org/user-guide/configuration/#project-information + site_name: Kaka Farm -theme: readthedocs +site_url: https://kaka.farm/blog/ +repo_url: https://gitlab.com/yuvallanger/kaka.farm +repo_name: GitLab +edit_uri: edit/master/docs/ +site_description: A personal blog +site_author: Yuval Langer + +# Documentation layout +# https://www.mkdocs.org/user-guide/configuration/#documentation-layout + pages: - Home: 'index.md' - Essays: - - 2018: - - 05: '2018/05/the-thriving-meme-mining-ghost-town-of-hollywood.md' + - May 2018: + - The Thriving Meme Mining Ghost Town of Hollywood: '2018/05/the-thriving-meme-mining-ghost-town-of-hollywood.md' - About: 'about.md' + +# Build directories +# https://www.mkdocs.org/user-guide/configuration/#build-directories + +theme: readthedocs + +# Formatting options +# https://www.mkdocs.org/user-guide/configuration/#formatting-options + +# plugins +# https://www.mkdocs.org/user-guide/configuration/#plugins + +plugins: + - search