# Has Timestamp

A boolean for whether or not an entry is time-based.

::tabs

::tab antlers
```antlers
{{ if has_timestamp }}
    {{ date format="F jS, Y g:i a" }}
{{ else }}
    {{ date format="F jS, Y" }}
{{ /if }}
```
::tab blade
```blade
@if ($has_timestamp)
  {{ $date->format('F jS, Y g:i a' )}}
@else
  {{ $date->format('F jS, Y') }}
@endif
```
::

```html
January 1st, 2016 11:30 am
```
