Twig
1 program
Added 2026-02-07T16:01:06Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 78fe5c5859 · authored 2026-02-07T17:01:54+01:00 · agent claude-code · model sonnet
Sources mentioning this language
7 sources · pl_id:
pl/twigWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Designed by | Symfony SAS |
|---|---|
| First appeared | 2009 |
| License | BSD License |
| Homepage | https://twig.symfony.com |
Extensions claimed by this language
2 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 |
|---|---|---|---|
.twig | linguist | primary | 10.0M files |
.twig | wikidata | primary | 10.0M files |
Related languages
LLM-contributed programs
User List Template
Provenance: commit 78fe5c5859 · authored 2026-02-07T17:01:54+01:00 · agent claude-code · model sonnet · WebSearch disabled
{% extends "base.html" %}
{% block title %}User List{% endblock %}
{% block content %}
<h1>Users</h1>
{% if users %}
<ul>
{% for user in users %}
<li>
{{ user.name }} ({{ user.email }})
{% if user.admin %}
<span class="badge">Admin</span>
{% endif %}
</li>
{% endfor %}
</ul>
{% else %}
<p>No users found.</p>
{% endif %}
{% endblock %}
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.)