This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / appview / pages / templates / repo / fragments / shortTimeAgo.html
292 B 9 lines
1{{ define "repo/fragments/shortTimeAgo" }} 2 {{ $formatted := shortRelTimeFmt . }} 3 {{ $content := printf "%s ago" $formatted }} 4 {{ if eq $formatted "now" }} 5 {{ $content = "now" }} 6 {{ end }} 7 {{ template "repo/fragments/timeWrapper" (dict "Time" . "Content" $content) }} 8{{ end }} 9