this repo has no description
1{{ define "title" }}{{ .RepoInfo.FullName }}{{ end }} 2 3{{ define "extrameta" }} 4 {{ template "repo/fragments/meta" . }} 5 {{ template "repo/fragments/og" (dict "RepoInfo" .RepoInfo) }} 6{{ end }} 7 8{{ define "repoContent" }} 9 <main> 10 <div class="w-full h-full flex place-content-center {{ if .LoggedInUser }} bg-yellow-100 dark:bg-yellow-900 {{ end }}"> 11 <div class="py-6 w-fit flex flex-col gap-4 text-center"> 12 {{ if .LoggedInUser }} 13 <p class=" text-yellow-800 dark:text-yellow-200 text-center"> 14 Your knot needs an upgrade. This repository is currently unavailable to users. 15 </p> 16 {{ else }} 17 <p class="text-gray-400 dark:text-gray-500 py-6 text-center"> 18 The knot hosting this repository needs an upgrade. This repository is currently unavailable. 19 </p> 20 {{ end }} 21 </div> 22 </div> 23 </main> 24{{ end }}