This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
jichan.org-go/dict/templates/word.html
2023-07-24 14:14:15 -07:00

9 lines
No EOL
295 B
HTML

{{- define "title" }}{{ if .Entry }}{{ .Entry.Kanji }}{{ else }}404 Not Found{{ end }} - {{ template "sitetitle" . }}{{- end -}}
{{- define "results" -}}
{{- if .Entry -}}
{{- template "entryfull" .Entry -}}
{{- else -}}
{{- template "404" . }}
{{- end -}}
{{- end -}}
{{- template "index" . -}}