Adding in some basics less bits.
This commit is contained in:
parent
5fa218e6d3
commit
ba3ce08bae
1
site/.gitignore
vendored
Normal file
1
site/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
static/css/hy.css
|
21
site/Makefile
Normal file
21
site/Makefile
Normal 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
6
site/less/hy.less
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/* Copyright (c) Paul Tagliamonte <paultag@debian.org> 2013 under the
|
||||||
|
* terms and conditions of Hy it's self. */
|
||||||
|
|
||||||
|
body {
|
||||||
|
|
||||||
|
}
|
@ -5,6 +5,9 @@
|
|||||||
<link
|
<link
|
||||||
rel="stylesheet"
|
rel="stylesheet"
|
||||||
href="{{ url_for("static", filename="css/pygments.css") }}" ></link>
|
href="{{ url_for("static", filename="css/pygments.css") }}" ></link>
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="{{ url_for("static", filename="css/hy.css") }}" ></link>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user