Files
gothub/views/wiki.html
T

35 lines
937 B
HTML

{{ template "header" .}}
<!-- prettier-ignore -->
<main class="margin-ow">
{{ if .wiki }} {{ range $key, $value := .wiki}}
<div id="wrap">
<div>
<h1>{{.Title}}</h1>
<h2>{{.RepoUser}}/{{.RepoName}}</h2>
<p>
{{.LastEditor}} edited this page on {{.LastEdit}} · {{.RevisionNum}} revisions
</p>
<hr style="border-color: #252525;">
<div style="margin-right: auto; max-width: 50vw;">
{{ unescape .PageContent }}
</div>
</div>
<div class="user-readme float-right">
<h3><b>{{.PageNum}}</b> pages</h3>
<div class="no-padding user-readme-text">
{{ range $key, $value := .Sidebar }}
<hr style="border-color: #252525;">
<a href="{{.Link}}"><p style="padding:0px 8px 0px 8px;">{{.Name}}</p></a>
{{end}}
</div>
</div>
</div>
{{ end }}
{{ else }}
<h2>Wiki not found</h2>
<p>That wiki doesn't exist.</p>
{{ end }}
</main>
{{ template "footer" .}}