mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
12 lines
261 B
HTML
12 lines
261 B
HTML
<!-- HTML fragment for testing extraction of Go templates -->
|
|
<h1>{{.PageTitle}}</h1>
|
|
<ul>
|
|
{{range .Todos}}
|
|
{{if .Done}}
|
|
<li class="done">{{.Title}}</li>
|
|
{{else}}
|
|
<li>{{.Title}}</li>
|
|
{{end}}
|
|
{{end}}
|
|
</ul>
|