Mentions légales du service

Skip to content
Snippets Groups Projects
Commit cad8faf5 authored by Cédric Eoche-Duval's avatar Cédric Eoche-Duval
Browse files

Remove minima from config, update makefile

parent 78cda9b2
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,6 @@ $(OUTPUT_FOLDER):
# launch jekyll serve to preview website with jekyll server
view: jekyll
cp $(OUTPUT_FOLDER)/jekyll-gazelle-documentation/index-default.html $(OUTPUT_FOLDER)/jekyll-gazelle-documentation/index.html
cd $(OUTPUT_FOLDER)/jekyll-gazelle-documentation/ && bundle exec jekyll serve
# Create documentation website with jekyll
......@@ -54,12 +53,13 @@ copy_docs_to_target:
# copy markdown sources to jekyll foler
copy_source_to_jekyll:
@for a in $(DOCS); do \
if [ -d $$a ]; then \
echo "copy folder $$a to $(OUTPUT_FOLDER)/jekyll-gazelle-documentation/"; \
cp -r $$a $(OUTPUT_FOLDER)/jekyll-gazelle-documentation/; \
fi; \
done;
@echo "Done!"
if [ -d $$a ]; then \
echo "copy folder $$a to $(OUTPUT_FOLDER)/jekyll-gazelle-documentation/"; \
cp -r $$a $(OUTPUT_FOLDER)/jekyll-gazelle-documentation/; \
fi; \
done;
cp $(OUTPUT_FOLDER)/jekyll-gazelle-documentation/index-default.html $(OUTPUT_FOLDER)/jekyll-gazelle-documentation/index.html
@echo "Done!"
.PHONY: clean
clean:
......
......@@ -27,7 +27,6 @@ url: "" # the base hostname & protocol for your site
# Build settings
markdown: kramdown
theme: minima
defaults:
-
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment