mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 07:09:21 +01:00
2141bc3298
1. The borders were doubled on the "empty" page, fix it. 2. Remove unnecessary CSS classes like "clone", "compact", etc 3. Use CSS class "clone-panel" instead of ID "clone-panel" 4. Use `tw-flex-1` instead of `gt-f1` 5. Remove unnecessary ID "more-btn" (cherry picked from commit 673286d8c8a00bf7240a93187d767fb5a5e32a31)
40 lines
1.4 KiB
Go HTML Template
40 lines
1.4 KiB
Go HTML Template
{{template "base/head" .}}
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository wiki revisions">
|
|
{{template "repo/header" .}}
|
|
{{$title := .title}}
|
|
<div class="ui container">
|
|
<div class="ui stackable grid">
|
|
<div class="ui eight wide column">
|
|
<div class="ui header">
|
|
<a class="file-revisions-btn ui basic button" title="{{ctx.Locale.Tr "repo.wiki.back_to_wiki"}}" href="{{.RepoLink}}/wiki/{{.PageURL}}"><span>{{.revision}}</span> {{svg "octicon-home"}}</a>
|
|
{{$title}}
|
|
<div class="ui sub header gt-word-break">
|
|
{{$timeSince := TimeSince .Author.When ctx.Locale}}
|
|
{{ctx.Locale.Tr "repo.wiki.last_commit_info" .Author.Name $timeSince}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="ui eight wide column text right">
|
|
<div class="clone-panel ui action small input">
|
|
{{template "repo/clone_buttons" .}}
|
|
{{template "repo/clone_script" .}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<h2 class="ui top header">{{ctx.Locale.Tr "repo.wiki.wiki_page_revisions"}}</h2>
|
|
<div class="gt-mt-4">
|
|
<h4 class="ui top attached header">
|
|
<div class="ui stackable grid">
|
|
<div class="sixteen wide column">
|
|
{{.CommitCount}} {{ctx.Locale.Tr "repo.commits.commits"}}
|
|
</div>
|
|
</div>
|
|
</h4>
|
|
{{if and .Commits (gt .CommitCount 0)}}
|
|
{{template "repo/commits_list" .}}
|
|
{{end}}
|
|
{{template "base/paginate" .}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|