summaryrefslogtreecommitdiffstats
path: root/templates/repo/wiki/view.tmpl
blob: f41e297ec06547b8de560aeb755249f3f68dde6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{template "base/head" .}}
<div class="repository wiki view">
	{{template "repo/header" .}}
  <div class="ui container">
    {{template "repo/sidebar" .}}
    <div class="ui dividing header">
      {{.Title}}
      <div class="ui sub header">
      	{{$timeSince := TimeSince .Author.When $.Lang}}
      	{{.i18n.Tr "repo.wiki.last_commit_info" .Author.Name $timeSince | Safe}}
      </div>
    </div>
		<div class="ui segment markdown">
			{{.Content | Str2html}}
		</div>
	</div>
</div>
{{template "base/footer" .}}