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
314 B 9 lines
1{{ define "repo/fragments/shortTimeAgo" }} 2 {{ $formatted := shortRelTimeFmt . }} 3 {{ $content := printf "%s ago" $formatted }} 4 {{ if or (eq $formatted "now") (isFutureTime .) }} 5 {{ $content = "now" }} 6 {{ end }} 7 {{ template "repo/fragments/timeWrapper" (dict "Time" . "Content" $content) }} 8{{ end }} 9