this repo has no description
at master 994 B view raw
1{{ define "timeline/fragments/trending" }} 2 <div class="w-full md:mx-0 py-4"> 3 <div class="px-6 pb-4"> 4 <h3 class="text-xl font-bold dark:text-white flex items-center gap-2"> 5 Trending 6 {{ i "trending-up" "size-4 flex-shrink-0" }} 7 </h3> 8 </div> 9 <div class="flex gap-4 overflow-x-auto scrollbar-hide items-stretch"> 10 {{ range $index, $repo := .Repos }} 11 <div class="flex-none h-full border border-gray-200 dark:border-gray-700 rounded-sm w-96"> 12 {{ template "user/fragments/repoCard" (list $ $repo true) }} 13 </div> 14 {{ else }} 15 <div class="py-8 px-6 bg-white dark:bg-gray-800 border border-gray-200 dark:border-gray-700 rounded-sm"> 16 <div class="text-sm text-gray-500 dark:text-gray-400 text-center"> 17 No trending repositories this week 18 </div> 19 </div> 20 {{ end }} 21 </div> 22 </div> 23{{ end }} 24 25