Changes between Version 1 and Version 2 of Ticket #14831, comment 12
- Timestamp:
- Jan 13, 2024, 11:32:13 AM (10 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14831, comment 12
v1 v2 1 1 Checking the `{% extends}` using this bash command 2 2 3 ``` 3 {{{ 4 4 find . -name "*.html" ! -path "./venv/*" -exec grep -n "% extends" {} + | awk -F: '$2 > 1 {print "Filename: " $1 ", Line number: " $2 ", Matched string: " $3}' 5 ``` 5 }}} 6 6 7 7 returns no results. It looks like the `{{% extends}}` is always at the top line of the `html` files