Browse Source

convert over to using hyde for templating...

main
John-Mark Gurney 5 years ago
parent
commit
2a714fd46f
5 changed files with 20 additions and 0 deletions
  1. +3
    -0
      .gitignore
  2. +12
    -0
      Makefile
  3. +0
    -0
      content/index.html
  4. +1
    -0
      requirements.txt
  5. +4
    -0
      site.yaml

+ 3
- 0
.gitignore View File

@@ -0,0 +1,3 @@
p
deploy
.hyde_deps

+ 12
- 0
Makefile View File

@@ -0,0 +1,12 @@
.PHONY: env

env:
(virtualenv p && . ./p/bin/activate && pip install -r requirements.txt)

.PHONY: deploy

deploy:
(. ./p/bin/activate && \
rm -rf deploy && \
hyde gen \
)

index.html → content/index.html View File


+ 1
- 0
requirements.txt View File

@@ -0,0 +1 @@
git+git://github.com/jmgurney/hyde.git@c8a8aafe081ce7bf9ea90b7e260914522e546210

+ 4
- 0
site.yaml View File

@@ -0,0 +1,4 @@
mode: development
media_root: media # Relative path from content folder.
media_url: /media # URL where the media files are served from.
base_url: / # The base url for autogenerated links.

Loading…
Cancel
Save