From bd4ccf4abafb7348a0034b1b0030c735d0f45817 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Fri, 6 May 2022 02:16:30 +0200 Subject: move Jekyll options to _config.yml --- Makefile | 6 ++++-- _config.yml | 4 ++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c8ce164..c0214f0 100644 --- a/Makefile +++ b/Makefile @@ -31,13 +31,15 @@ ruby: deps: ruby bundle install +jekyll := bundle exec jekyll + .PHONY: build build: - bundle exec jekyll build --drafts + $(jekyll) build .PHONY: serve serve: - bundle exec jekyll serve --drafts --host 0.0.0.0 + $(jekyll) serve URL := http://localhost:4000/jekyll-theme/ diff --git a/_config.yml b/_config.yml index c12a5ab..298fcfd 100644 --- a/_config.yml +++ b/_config.yml @@ -1,5 +1,9 @@ # Jekyll baseurl: /jekyll-theme +host: 0.0.0.0 +open_url: true +show_drafts: true +strict_front_matter: true exclude: - Gemfile -- cgit v1.2.3