Skip to content

Commit

Permalink
Add markup docs time filters (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
WebVPF authored Feb 20, 2024
1 parent 9aadce8 commit c5f0f10
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
23 changes: 23 additions & 0 deletions markup/filters/time.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# time_since and time_tense

The `time_since` and `time_tense` filters format time.

## time_since

Formats a human readable time difference from the value to the current time. Eg: **10 minutes ago**

```twig
{{ '2021-03-06 14:25:55'|time_since }}
{{ 'February 14, 2024 14:30'|time_since }}
```

## time_tense

Formats 24-hour time and the day using the grammatical tense of the current time. Eg: Today at 12:49, Yesterday at 4:00 or 18 Sep 2015 at 14:33.

```twig
{{ '2021-03-06 14:25:55'|time_tense }}
```

> **NOTE:** To format dates in Twig there is a [date filter](https://twig.symfony.com/doc/3.x/filters/date.html)
1 change: 1 addition & 0 deletions markup/toc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ sections:
filters/raw: "| raw"
filters/resize: "| resize"
filters/theme: "| theme"
filters/time: "| time_[since|tense]"
filters/trans: "| trans"

Functions:
Expand Down

0 comments on commit c5f0f10

Please sign in to comment.