Skip to content

Commit

Permalink
Fix source-file include
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanzilla committed May 2, 2021
1 parent 15c3cf7 commit 3b6d4ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions material/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ <h1>{{ page.title | d(config.site_name, true)}}</h1>
{% if page.meta.git_revision_date_localized or
page.meta.revision_date
%}
{% include "partials/source-date.html" %}
{% include "partials/source-file.html" %}
{% endif %}
{% endif %}
{% endblock %}
Expand Down Expand Up @@ -197,7 +197,7 @@ <h1>{{ page.title | d(config.site_name, true)}}</h1>
"base": base_url,
"features": features,
"translations": {},
"search": "assets/javascripts/workers/search.4fa0e4ee.min.js" | url,
"search": "assets/javascripts/workers/search.d2d1b361.min.js" | url,
"version": config.extra.version or None
} -%}
{%- set translations = app.translations -%}
Expand All @@ -223,7 +223,7 @@ <h1>{{ page.title | d(config.site_name, true)}}</h1>
</script>
{% endblock %}
{% block scripts %}
<script src="{{ 'assets/javascripts/bundle.1d3bfcf1.min.js' | url }}"></script>
<script src="{{ 'assets/javascripts/bundle.405ee05f.min.js' | url }}"></script>
{% for path in config["extra_javascript"] %}
<script src="{{ path | url }}"></script>
{% endfor %}
Expand Down
2 changes: 1 addition & 1 deletion src/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ <h1>{{ page.title | d(config.site_name, true)}}</h1>
{% if page.meta.git_revision_date_localized or
page.meta.revision_date
%}
{% include "partials/source-date.html" %}
{% include "partials/source-file.html" %}
{% endif %}
{% endif %}
{% endblock %}
Expand Down

0 comments on commit 3b6d4ac

Please sign in to comment.