initial commit

This commit is contained in:
2026-08-11 17:39:34 -05:00
commit 9b44006c18
22 changed files with 24580 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
==================
Extends With String
==================
{% extends "base.html" %}
<h1>Hello</h1>
---
(template
(content)
(extends
(filtered_value
(value
(literal
(string)))))
(content))
==================
Extends With Variable
==================
{% extends base_template %}
<h1>Hello</h1>
---
(template
(content)
(extends
(filtered_value
(value
(variable_attribute
(identifier)))))
(content))