mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-15 17:20:15 -04:00
17 lines
351 B
Markdown
17 lines
351 B
Markdown
---
|
|
title: Before
|
|
description: Reports whether TIME1 is before TIME2.
|
|
categories: []
|
|
keywords: []
|
|
params:
|
|
functions_and_methods:
|
|
returnType: bool
|
|
signatures: [TIME1.Before TIME2]
|
|
---
|
|
|
|
```go-html-template
|
|
{{ $t1 := time.AsTime "2023-01-01T17:00:00-08:00" }}
|
|
{{ $t2 := time.AsTime "2030-01-01T17:00:00-08:00" }}
|
|
|
|
{{ $t1.Before $t2 }} → true
|