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.

30 lines
1.0 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. <div class="panel panel-default file-content">
  2. <div class="panel-heading file-head">
  3. {{if .ReadmeExist}}
  4. <i class="icon fa fa-book"></i>
  5. {{else}}
  6. <i class="icon fa fa-file-text-o"></i>
  7. {{end}}{{.FileName}}
  8. </div>
  9. {{if .FileIsLarge}}
  10. <div class="panel-footer">
  11. Large file size 1000kb
  12. </div>
  13. {{else}}
  14. {{if .ReadmeExist}}
  15. <div class="panel-body file-body markdown">
  16. {{.FileContent|str2html}}
  17. </div>
  18. {{else}}
  19. <div class="panel-body file-body file-code">
  20. <table>
  21. <tbody>
  22. <tr>
  23. <td class="lines-num"></td>
  24. <td class="lines-code markdown"><pre class="linenums lang-{{.FileExt}}"><code>{{.FileContent}}</code></pre></td>
  25. </tr>
  26. </tbody>
  27. </table>
  28. </div>
  29. {{end}}
  30. {{end}}
  31. </div>