-
Notifications
You must be signed in to change notification settings - Fork 456
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #3773 - restore annotation_helper.tmpl to avoid breaking themes
- Loading branch information
Showing
3 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
nikola/data/themes/base-jinja/templates/annotation_helper.tmpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{# The annotation feature is no longer supported, but themes may still have leftover references. #} | ||
{# This file is kept with empty functions for backwards compatibility. #} | ||
{% macro css() %} | ||
{% endmacro %} | ||
|
||
{% macro code() %} | ||
{% endmacro %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
## The annotation feature is no longer supported, but themes may still have leftover references. | ||
## This file is kept with empty functions for backwards compatibility. | ||
<%def name="css()"> | ||
</%def> | ||
|
||
<%def name="code()"> | ||
</%def> |