diff options
-rw-r--r-- | pelican-bootstrap3/templates/base.html | 8 |
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 %} |