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.

single_file.tmpl 613B

1234567891011121314151617181920
  1. <div class="panel panel-default file-content">
  2. <div class="panel-heading file-head">
  3. <i class="icon fa fa-book"></i> {{.FileName}}
  4. </div>
  5. {{if .FileIsLarge}}
  6. <div class="panel-footer">
  7. Large file size 1000kb
  8. </div>
  9. {{else}}
  10. {{if .ReadmeExist}}
  11. <div class="panel-body file-body markdown">
  12. {{.FileContent|str2html}}
  13. </div>
  14. {{else}}
  15. <div class="panel-body file-body markdown">
  16. <pre><code>{{.FileContent|str2html}}</code></pre>
  17. </div>
  18. {{end}}
  19. {{end}}
  20. </div>