Adding in some basics less bits.

This commit is contained in:
Paul R. Tagliamonte 2013-03-10 13:28:50 -04:00
parent 5fa218e6d3
commit ba3ce08bae
4 changed files with 31 additions and 0 deletions

1
site/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
static/css/hy.css

21
site/Makefile Normal file
View File

@ -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

6
site/less/hy.less Normal file
View File

@ -0,0 +1,6 @@
/* Copyright (c) Paul Tagliamonte <paultag@debian.org> 2013 under the
* terms and conditions of Hy it's self. */
body {
}

View File

@ -5,6 +5,9 @@
<link
rel="stylesheet"
href="{{ url_for("static", filename="css/pygments.css") }}" ></link>
<link
rel="stylesheet"
href="{{ url_for("static", filename="css/hy.css") }}" ></link>
</head>
<body>
{% block content %}