this repo has no description
1{{ define "title" }}timeline{{ end }} 2 3{{ define "content" }} 4 <h1>Timeline</h1> 5 6 {{ range .Timeline }} 7 {{ if .Repo }} 8 <div class="border border-black p-4 m-2 bg-white w-1/2"> 9 <div class="flex items-center"> 10 <div class="text-sm text-gray-600"> 11 {{ .Repo.Did }} created 12 </div> 13 <div class="px-3">{{ .Repo.Name }}</div> 14 </div> 15 16 <time class="text-sm text-gray-700" 17 >{{ .Repo.Created | timeFmt }}</time 18 > 19 </div> 20 {{ else if .Follow }} 21 <div class="border border-black p-4 m-2 bg-white w-1/2"> 22 <div class="flex items-center"> 23 <div class="text-sm text-gray-600"> 24 {{ .Follow.UserDid }} followed 25 </div> 26 <div class="text-sm text-gray-800"> 27 {{ .Follow.SubjectDid }} 28 </div> 29 </div> 30 31 <time class="text-sm text-gray-700" 32 >{{ .Follow.FollowedAt | timeFmt }}</time 33 > 34 </div> 35 {{ end }} 36 {{ end }} 37 38{{ end }}