Leaf
1 program
Added 2026-03-12T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Leaf (Vapor)
Provenance: commit fe04638c0d · authored 2026-03-12T03:30:37+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
2 sources · pl_id:
pl/leafRelated languages
LLM-contributed programs
Product Listing Template
Provenance: commit fe04638c0d · authored 2026-03-12T03:30:37+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
<!DOCTYPE html>
<html lang="en">
<head>
<title>#(title)</title>
</head>
<body>
<h1>Welcome, #(user.name)!</h1>
#if(user.isAdmin):
<p class="admin-badge">Administrator</p>
#endif
<h2>Your Items</h2>
#if(items.isEmpty):
<p>No items found.</p>
#else:
<ul>
#for(item in items):
<li>
<strong>#(item.name)</strong>
— $#(item.price)
#if(item.inStock):
<span class="available">In Stock</span>
#else:
<span class="unavailable">Out of Stock</span>
#endif
</li>
#endfor
</ul>
<p>Total items: #(items.count)</p>
#endif
</body>
</html>
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)