From ba3ce08bae595f08c82ed116de1cad83d3a28245 Mon Sep 17 00:00:00 2001 From: "Paul R. Tagliamonte" Date: Sun, 10 Mar 2013 13:28:50 -0400 Subject: [PATCH] Adding in some basics less bits. --- site/.gitignore | 1 + site/Makefile | 21 +++++++++++++++++++++ site/less/hy.less | 6 ++++++ site/templates/base.html | 3 +++ 4 files changed, 31 insertions(+) create mode 100644 site/.gitignore create mode 100644 site/Makefile create mode 100644 site/less/hy.less 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 %}