diff --git a/site/.gitignore b/site/.gitignore new file mode 100644 index 0000000..2561c0e --- /dev/null +++ b/site/.gitignore @@ -0,0 +1 @@ +static/css/hy.css diff --git a/site/Makefile b/site/Makefile new file mode 100644 index 0000000..cb58fc9 --- /dev/null +++ b/site/Makefile @@ -0,0 +1,21 @@ +# + +LESSC = lessc +LESSCFLAGS = -x +STATIC = static +STATIC_CSS = $(STATIC)/css + + +all: build + @echo "Nice." + + +build: clean + $(LESSC) $(LESSCFLAGS) less/hy.less > $(STATIC_CSS)/hy.css + + +clean: + rm $(STATIC_CSS)/hy.css + + +.PHONY: build clean diff --git a/site/less/hy.less b/site/less/hy.less new file mode 100644 index 0000000..97ebbd9 --- /dev/null +++ b/site/less/hy.less @@ -0,0 +1,6 @@ +/* Copyright (c) Paul Tagliamonte 2013 under the + * terms and conditions of Hy it's self. */ + +body { + +} diff --git a/site/templates/base.html b/site/templates/base.html index f24d102..03a9a48 100644 --- a/site/templates/base.html +++ b/site/templates/base.html @@ -5,6 +5,9 @@ + {% block content %}