aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3
diff options
context:
space:
mode:
authorPeter Fraenkel <pnf@podsnap.com>2013-10-23 15:33:53 -0400
committerPeter Fraenkel <pnf@podsnap.com>2013-10-23 15:33:53 -0400
commit1cd742a84a81f135234be021cf4fe7b8ff2c13ff (patch)
tree85d52a5ca229684ceb253d92db59d67c5e985c04 /pelican-bootstrap3
parente4a06e410a1b03a7c1c9f32cf92a4ea7ffa0281b (diff)
downloadpelican-themes-1cd742a84a81f135234be021cf4fe7b8ff2c13ff.zip
pelican-themes-1cd742a84a81f135234be021cf4fe7b8ff2c13ff.tar.gz
pelican-themes-1cd742a84a81f135234be021cf4fe7b8ff2c13ff.tar.bz2
Enable latex plugin
Diffstat (limited to 'pelican-bootstrap3')
-rw-r--r--pelican-bootstrap3/templates/base.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/pelican-bootstrap3/templates/base.html b/pelican-bootstrap3/templates/base.html
index cb99d79..cc41e02 100644
--- a/pelican-bootstrap3/templates/base.html
+++ b/pelican-bootstrap3/templates/base.html
@@ -9,6 +9,14 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <!-- Enable latex plugin -->
+ {% if article and article.latex %}
+ {{ article.latex }}
+ {% endif %}
+ {% if page and page.latex %}
+ {{ page.latex }}
+ {% endif %}
+
<!-- Open Graph tags -->
{% if USE_OPEN_GRAPH is not defined %}
{% set USE_OPEN_GRAPH = True %}