您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

11 行
215 B

  1. {{ define "edit" }}
  2. {{ range (readDir ".") }}
  3. {{ if .IsDir }}
  4. <p>Dir: {{ .Name }}</p>
  5. {{ partial "readdir.html" .Name }}
  6. {{ else }}
  7. <p>File: {{ .Name }}
  8. {{ end }}
  9. {{ end }}
  10. {{ end }}