this repo has no description
at master 1.4 kB view raw
1{{ define "timeline/fragments/goodfirstissues" }} 2 {{ if .GfiLabel }} 3 <a href="/goodfirstissues" class="no-underline hover:no-underline"> 4 <div class="flex items-center justify-between gap-2 bg-purple-200 dark:bg-purple-900 border border-purple-400 dark:border-purple-500 rounded mb-4 py-4 px-6 "> 5 <div class="flex-1 flex flex-col gap-2"> 6 <p> 7 Make your first contribution to an open-source project. 8 <em>good-first-issue</em> helps new contributors find easy ways to 9 start contributing to open-source projects. 10 </p> 11 <span class="flex items-center gap-2 text-purple-500 dark:text-purple-400"> 12 Browse issues {{ i "arrow-right" "size-4" }} 13 </span> 14 </div> 15 <div class="hidden md:block relative px-16 scale-150"> 16 <div class="relative opacity-60"> 17 {{ template "labels/fragments/label" (dict "def" .GfiLabel "val" "" "withPrefix" true) }} 18 </div> 19 <div class="relative -mt-4 ml-2 opacity-80"> 20 {{ template "labels/fragments/label" (dict "def" .GfiLabel "val" "" "withPrefix" true) }} 21 </div> 22 <div class="relative -mt-4 ml-4"> 23 {{ template "labels/fragments/label" (dict "def" .GfiLabel "val" "" "withPrefix" true) }} 24 </div> 25 </div> 26 </div> 27 </a> 28 {{ end }} 29{{ end }}