gitea

Development moved to Codeberg

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. 17
  18. 18
  19. 19
  20. 20
  21. 21
  22. 22
  23. 23
  24. 24
  25. 25
  26. 26
  27. 27
  28. 28
  29. 29
  30. 30
  31. 31
{{template "base/head" .}}
<div class="page-content repository wiki pages">
	{{template "repo/header" .}}
	<div class="ui container">
		<h2 class="ui header df ac sb">
			<div>
				{{.i18n.Tr "repo.wiki.pages"}}
			</div>
			<div>
				{{if and .CanWriteWiki (not .IsRepositoryMirror)}}
					<a class="ui green small button" href="{{.RepoLink}}/wiki?action=_new">{{.i18n.Tr "repo.wiki.new_page_button"}}</a>
				{{end}}
			</div>
		</h2>
		<table class="ui table">
			<tbody>
				{{range .Pages}}
					<tr>
						<td>
							{{svg "octicon-file"}}
							<a href="{{$.RepoLink}}/wiki/{{.SubURL}}">{{.Name}}</a>
						</td>
						{{$timeSince := TimeSinceUnix .UpdatedUnix $.i18n.Lang}}
						<td class="text right grey">{{$.i18n.Tr "repo.wiki.last_updated" $timeSince | Safe}}</td>
					</tr>
				{{end}}
			</tbody>
		</table>
	</div>
</div>
{{template "base/footer" .}}