mirror of
https://codeberg.org/gothub/gothub
synced 2024-12-06 19:16:24 +01:00
27 lines
502 B
HTML
27 lines
502 B
HTML
{{ template "header" .}}
|
|
|
|
<main>
|
|
{{ if .file }}
|
|
<style>
|
|
// prettier-ignore
|
|
{{.css}}
|
|
</style>
|
|
<div class="downloadParent">
|
|
<a href="/{{.fullname}}" class="button">Back to {{.fullname}}</a>
|
|
</div>
|
|
|
|
<div class="userReadme">
|
|
<div class="userContainer">
|
|
<h3>{{.name}}</h3>
|
|
<a
|
|
href="/raw/{{.fullname}}/{{.branch}}/{{.name}}"
|
|
class="button secondary"
|
|
>Raw</a
|
|
>
|
|
</div>
|
|
{{ .file}}
|
|
</div>
|
|
{{end}}
|
|
</main>
|
|
{{ template "footer" .}}
|