mirror of
https://github.com/go-gitea/gitea
synced 2024-11-06 06:09:07 +01:00
26 lines
1.1 KiB
Go
26 lines
1.1 KiB
Go
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package timeutil
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"html"
|
||
|
"html/template"
|
||
|
)
|
||
|
|
||
|
// DateTime renders an absolute time HTML given a time as a string
|
||
|
func DateTime(format, datetime, fallback string) template.HTML {
|
||
|
datetimeEscaped := html.EscapeString(datetime)
|
||
|
fallbackEscaped := html.EscapeString(fallback)
|
||
|
switch format {
|
||
|
case "short":
|
||
|
return template.HTML(fmt.Sprintf(`<relative-time format="datetime" year="numeric" month="short" day="numeric" weekday="" datetime="%s">%s</relative-time>`, datetimeEscaped, fallbackEscaped))
|
||
|
case "long":
|
||
|
return template.HTML(fmt.Sprintf(`<relative-time format="datetime" year="numeric" month="long" day="numeric" weekday="" datetime="%s">%s</relative-time>`, datetimeEscaped, fallbackEscaped))
|
||
|
case "full":
|
||
|
return template.HTML(fmt.Sprintf(`<relative-time format="datetime" weekday="" year="numeric" month="short" day="numeric" hour="numeric" minute="numeric" second="numeric" datetime="%s">%s</relative-time>`, datetimeEscaped, fallbackEscaped))
|
||
|
}
|
||
|
return template.HTML("error in DateTime")
|
||
|
}
|