Skip to content

Commit 74757e5

Browse files
Remove fallback to current year in footer
The footer template now only uses config.extra.current_year for the year value, removing the fallback to the current year via now().year.
1 parent a1cbbc6 commit 74757e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% set year = (config.extra.current_year or None) or now().year %}
1+
{% set year = (config.extra.current_year or None) %}
22
<div class="wl-footer">
33
© {{ year }} Wow Labz · Built with <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">MkDocs Material</a>.
44
</div>

0 commit comments

Comments
 (0)