Skip to content

Commit d9ee04f

Browse files
committedMay 22, 2017
Fix math macro usage in base (h/t @gwax)
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
1 parent 015ae64 commit d9ee04f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎nikola/data/themes/base-jinja/templates/post.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
{{ comments.comment_form(post.permalink(absolute=True), post.title(), post._base_path) }}
4545
</section>
4646
{% endif %}
47-
{{ math.math_styles_ifpost(post) }}
47+
{{ math.math_scripts_ifpost(post) }}
4848
</article>
4949
{{ comments.comment_link_script() }}
5050
{% endblock %}

‎nikola/data/themes/base/templates/post.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
${comments.comment_form(post.permalink(absolute=True), post.title(), post._base_path)}
4545
</section>
4646
% endif
47-
${math.math_styles_ifpost(post)}
47+
${math.math_scripts_ifpost(post)}
4848
</article>
4949
${comments.comment_link_script()}
5050
</%block>

0 commit comments

Comments
 (0)
Please sign in to comment.