add support for internal or external css/js/googlefonts

This commit is contained in:
Dean Attali 2015-03-02 17:10:41 -08:00
parent d2965a16bd
commit e2f16fd06d
7 changed files with 84 additions and 22 deletions

View file

@ -1,7 +1,22 @@
---
common-css:
- "/css/bootstrap.min.css"
- "/css/main.css"
common-ext-css:
- "//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"
common-googlefonts:
- "Lora:400,700,400italic,700italic"
- "Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800"
common-js:
- "/js/jquery-1.11.2.min.js"
- "/js/bootstrap.min.js"
- "/js/main.js"
---
<!DOCTYPE html>
<html lang="en">
{% include head.html full = true %}
{% include head.html %}
<body>
@ -13,7 +28,7 @@
{% include footer.html %}
{% include footer-scripts.html full = true %}
{% include footer-scripts.html %}
</body>
</html>

View file

@ -1,7 +1,16 @@
---
common-css:
- "/css/bootstrap.min.css"
- "/css/main-minimal.css"
common-js:
- "/js/jquery-1.11.2.min.js"
- "/js/bootstrap.min.js"
---
<!DOCTYPE html>
<html lang="en">
{% include head.html full = false %}
{% include head.html %}
<body>
@ -11,7 +20,7 @@
{% include footer-minimal.html %}
{% include footer-scripts.html full = false %}
{% include footer-scripts.html %}
</body>
</html>