1
1
mirror of https://github.com/go-gitea/gitea synced 2025-08-13 21:18:21 +00:00

Fix over-escaped characters (#2992)

This commit is contained in:
Ethan Koenig
2017-11-26 21:01:13 -08:00
committed by Lauris BH
parent 460d0d9077
commit b16e5a42eb
5 changed files with 17 additions and 19 deletions

View File

@@ -1,7 +1,7 @@
{{template "base/head" .}}
<div class="repository wiki view">
{{template "repo/header" .}}
{{ $title := .title | Sanitize}}
{{ $title := .title}}
<div class="ui container">
<div class="ui grid">
<div class="ui ten wide column">
@@ -21,7 +21,7 @@
</div>
<div class="scrolling menu">
{{range .Pages}}
<div class="item {{if eq $.Title .Name}}selected{{end}}" data-url="{{$.RepoLink}}/wiki/{{.URL}}">{{.Name | Sanitize}}</div>
<div class="item {{if eq $.Title .Name}}selected{{end}}" data-url="{{$.RepoLink}}/wiki/{{.URL}}">{{.Name}}</div>
{{end}}
</div>
</div>