this repo has no description
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 <div class="text-purple-500 dark:text-purple-400">Oct 2025</div> 7 <p> 8 Make your first contribution to an open-source project this October. 9 </p> 10 <p> 11 <em>good-first-issue</em> is a collection of issues on open-source projects 12 that are easy ways for new contributors to give back to the projects 13 they love. 14 </p> 15 <span class="flex items-center gap-2 text-purple-500 dark:text-purple-400"> 16 Browse issues {{ i "arrow-right" "size-4" }} 17 </span> 18 </div> 19 <div class="hidden md:block relative px-16 scale-150"> 20 <div class="relative opacity-60"> 21 {{ template "labels/fragments/label" (dict "def" .GfiLabel "val" "" "withPrefix" true) }} 22 </div> 23 <div class="relative -mt-4 ml-2 opacity-80"> 24 {{ template "labels/fragments/label" (dict "def" .GfiLabel "val" "" "withPrefix" true) }} 25 </div> 26 <div class="relative -mt-4 ml-4"> 27 {{ template "labels/fragments/label" (dict "def" .GfiLabel "val" "" "withPrefix" true) }} 28 </div> 29 </div> 30 </div> 31 </a> 32 {{ end }} 33{{ end }}