aboutsummaryrefslogtreecommitdiff
blob: 1a853bbe7002b64d9f3ff4291dbba0af75e5bc0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="en">
{{template "head" .Header}}
<body>
{{template "header" .Header}}


{{template "categoryheader" . }}


<div class="tab-content" id="myTabContent">
    <div class="container mb-5 tab-pane fade show active" id="overview" role="tabpanel" aria-labelledby="overview-tab">
        {{if eq .PageName "packages"}}
            {{template "packages" .}}
        {{else if eq .PageName "outdated"}}
            {{template "outdated" .}}
        {{else if eq .PageName "pull-requests"}}
            {{template "pull-requests" .}}
        {{end}}
    </div>
</div>

{{template "footer" .Application }}

</body>
</html>