diff options
author | slene <vslene@gmail.com> | 2014-03-20 17:31:18 +0800 |
---|---|---|
committer | slene <vslene@gmail.com> | 2014-03-20 17:31:18 +0800 |
commit | 21379e30a18fed473ae2bbeb41332919ff80497d (patch) | |
tree | 814d9a5fd691f9e96b6aa631b3f0e291475a8dd7 /templates | |
parent | c3532718a79f102f4e19c11868a2c618b482eb6a (diff) | |
download | gitea-21379e30a18fed473ae2bbeb41332919ff80497d.tar.gz gitea-21379e30a18fed473ae2bbeb41332919ff80497d.zip |
fix link
Diffstat (limited to 'templates')
-rw-r--r-- | templates/repo/single_file.tmpl | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/templates/repo/single_file.tmpl b/templates/repo/single_file.tmpl index b4626053fd..0c1c3713f6 100644 --- a/templates/repo/single_file.tmpl +++ b/templates/repo/single_file.tmpl @@ -1,6 +1,10 @@ <div class="panel panel-default file-content"> <div class="panel-heading file-head"> - <i class="icon fa fa-book"></i> {{.FileName}} + {{if .ReadmeExist}} + <i class="icon fa fa-book"></i> + {{else}} + <i class="icon fa fa-file-text-o"></i> + {{end}}{{.FileName}} </div> {{if .FileIsLarge}} <div class="panel-footer"> @@ -12,8 +16,8 @@ {{.FileContent|str2html}} </div> {{else}} - <div class="panel-body file-body markdown"> - <pre><code>{{.FileContent}}</code></pre> + <div class="panel-body file-body file-code markdown"> + <pre class="linenums"><code>{{.FileContent}}</code></pre> </div> {{end}} {{end}} |