Skip to content

Commit

Permalink
Fix math styles in bootstrap4
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Mar 7, 2018
1 parent cfc557d commit ab74332
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nikola/data/themes/bootstrap4-jinja/templates/gallery.tmpl
Expand Up @@ -60,7 +60,7 @@


{% block extra_js %}
<script src="/assets/js/flowr.plugin.js"></script>
<script src="/assets/js/flowr.js"></script>
<script>
jsonContent = {{ photo_array_json }};
$("#gallery_container").flowr({
Expand Down
4 changes: 2 additions & 2 deletions nikola/data/themes/bootstrap4-jinja/templates/listing.tmpl
Expand Up @@ -25,8 +25,8 @@

{% block sourcelink %}
{% if source_link %}
<li>
<a href="{{ source_link }}" id="sourcelink">{{ messages("Source") }}</a>
<li class="nav-item">
<a href="{{ source_link }}" id="sourcelink" class="nav-link">{{ messages("Source") }}</a>
</li>
{% endif %}
{% endblock %}
1 change: 1 addition & 0 deletions nikola/data/themes/bootstrap4-jinja/templates/post.tmpl
Expand Up @@ -26,6 +26,7 @@
{{ helper.open_graph_metadata(post) }}
{{ helper.twitter_card_information(post) }}
{{ helper.meta_translations(post) }}
{{ math.math_styles_ifpost(post) }}
{% endblock %}

{% block content %}
Expand Down
1 change: 1 addition & 0 deletions nikola/data/themes/bootstrap4/templates/post.tmpl
Expand Up @@ -26,6 +26,7 @@
${helper.open_graph_metadata(post)}
${helper.twitter_card_information(post)}
${helper.meta_translations(post)}
${math.math_styles_ifpost(post)}
</%block>

<%block name="content">
Expand Down

0 comments on commit ab74332

Please sign in to comment.