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

# Clock

> Display a live clock with running seconds and the current date

```liquid theme={null}
{% clock /%}
```

## Examples

### Default Clock (12h)

```liquid theme={null}
{% clock /%}
```

### 24-Hour Clock

```liquid theme={null}
{% clock format="24h" /%}
```

## Attributes

<ResponseField name="format" type="string" default="12h">
  Time format: 12-hour or 24-hour

  **Allowed values:**

  * `12h`
  * `24h`
</ResponseField>

<ResponseField name="variant" type="string" default="sans">
  Font variant: sans-serif or monospace

  **Allowed values:**

  * `sans`
  * `mono`
</ResponseField>

<ResponseField name="align" type="string" default="left">
  Text alignment

  **Allowed values:**

  * `left`
  * `right`
</ResponseField>
