Changes between Version 1 and Version 2 of Ticket #14831, comment 12


Ignore:
Timestamp:
Jan 13, 2024, 11:32:13 AM (4 months ago)
Author:
Ryan Cheley

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #14831, comment 12

    v1 v2  
    11Checking the `{% extends}` using this bash command
    22
    3 ```
     3{{{
    44find . -name "*.html" ! -path "./venv/*" -exec grep -n "% extends" {} + | awk -F: '$2 > 1 {print "Filename: " $1 ", Line number: " $2 ", Matched string: " $3}'
    5 ```
     5}}}
    66
    77returns no results. It looks like the `{{% extends}}` is always at the top line of the `html` files
Back to Top