> ## Documentation Index
> Fetch the complete documentation index at: https://docs.iinkedsign.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Date formats

> Learn about the various date format options available for date-related template tags.

## Overview

For date-related tags, you can specify the date format by appending a format to the date tag as follows:

```handlebars theme={null}
{{s_<signer_number>:date_<format>}}
```

| Option            | Long                          | Short              | Output (en-CA)     |
| ----------------- | ----------------------------- | ------------------ | ------------------ |
| Date `default`    | `{{s_#:date}}`                | `{{s_#:d}}`        | 2022-11-21         |
| Date Time         | `{{s_#:date_datetime}}`       | `{{s_#:d_dt}}`     | 2022-11-21 2:25 PM |
| Time              | `{{s_#:date_time}}`           | `{{s_#:d_t}}`      | 2:25 PM            |
| Time Long         | `{{s_#:date_timelong}}`       | `{{s_#:d_tl}}`     | 2:25:50 PM         |
| Day               | `{{s_#:date_day}}`            | `{{s_#:d_dy}}`     | 21                 |
| Day With Suffix   | `{{s_#:date_daywithsuffix}}`  | `{{s_#:date_dws}}` | 21st               |
| Day Of Week       | `{{s_#:date_dayofweek}}`      | `{{s_#:d_dow}}`    | Monday             |
| Day Of Week Short | `{{s_#:date_dayofweekshort}}` | `{{s_#:d_dows}}`   | Mon                |
| Month             | `{{s_#:date_month}}`          | `{{s_#:d_m}}`      | 11                 |
| Month Short       | `{{s_#:date_monthshort}}`     | `{{s_#:d_ms}}`     | Nov                |
| Month Long        | `{{s_#:date_monthlong}}`      | `{{s_#:d_ml}}`     | November           |
| Year              | `{{s_#:date_year}}`           | `{{s_#:d_y}}`      | 2022               |
| Year Short        | `{{s_#:date_yearshort}}`      | `{{s_#:d_ys}}`     | 22                 |
| Year Month        | `{{s_#:date_yearmonth}}`      | `{{s_#:d_ym}}`     | November 2022      |
