...
{{$query_url := urlquery .Query}}
{{with .Textual}}
	{{if $.Complete}}
		
{{html $.Found}} textual occurrences
	{{else}}
		
More than {{html $.Found}} textual occurrences
		
		Not all files or lines containing "{{html $.Query}}" are shown.
		
	{{end}}
	
	
	{{range .}}
		{{$file := .Filename}}
		
		| {{$file}}: |  | {{len .Lines}} |  | {{range .Lines}}
			{{html .}}
		{{end}}
		{{if not $.Complete}}
			...
		{{end}} | 
	{{end}}
	{{if not $.Complete}}
		| ... | 
	{{end}}
	
	
{{end}}