This website works better with JavaScript.
Home
Explore
Help
Sign In
jmg
/
encryptthenet
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
convert over to using hyde for templating...
main
John-Mark Gurney
5 years ago
parent
bdc20fbe79
commit
2a714fd46f
5 changed files
with
20 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
.gitignore
+12
-0
Makefile
+0
-0
content/index.html
+1
-0
requirements.txt
+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.
Write
Preview
Loading…
Cancel
Save