Velocity
1 program
Added 2026-02-10T21:00:53Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Apache Velocity, VTL
Provenance: commit 35c7564726 · authored 2026-02-10T22:01:29+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/velocity-template-languageExtensions claimed by this language
3 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.vm | pygments | primary | 1.1M files |
.vtl | linguist | primary | 78.6K files |
.fhtml | pygments | secondary | 537 files |
Related languages
LLM-contributed programs
Fruit List Template
Provenance: commit 35c7564726 · authored 2026-02-10T22:01:29+01:00 · agent claude-code · model sonnet · WebSearch disabled
## Velocity Template Example - List Processing
#set( $list = ["Apple", "Banana", "Cherry", "Date"] )
<html>
<head>
<title>Fruit List</title>
</head>
<body>
<h1>Available Fruits</h1>
<ul>
#foreach( $fruit in $list )
<li>$fruit</li>
#end
</ul>
<p>Total fruits: $list.size()</p>
#if( $list.size() > 3 )
<p>We have a large selection!</p>
#else
<p>Limited selection available.</p>
#end
</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.)