You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

list.tmpl 201B

123456789101112131415
  1. {{template "base/head" .}}
  2. <ul>
  3. {{range .SubNames}}
  4. <li><a href="{{AppSubUrl}}/devtest/{{.}}">{{.}}</a></li>
  5. {{end}}
  6. </ul>
  7. <style>
  8. ul {
  9. line-height: 2em;
  10. }
  11. </style>
  12. {{template "base/footer" .}}