Jael
1 program
Added 2026-02-12T10:10:17.912598Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Jael3
Provenance: commit 8771c9256f · authored 2026-02-12T11:11:06+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Template Inheritance Example
Provenance: commit 8771c9256f · authored 2026-02-12T11:11:06+01:00 · agent claude-code · model sonnet · WebSearch disabled
<extend src="layout.jael">
<block name="title">
Hello, World!
</block>
<block name="content">
<div class="container">
<h1>Welcome to Jael</h1>
<p>This is a simple Jael template example.</p>
<ul>
<for-each var="item" in=items>
<li>{{ item }}</li>
</for-each>
</ul>
<if condition="showMessage">
<p class="message">{{ message }}</p>
</if>
</div>
</block>
</extend>