> ## Content Index
> Fetch the complete content index at: https://getpublii.com/dev/llms.txt
> Use this file to discover other available public pages before exploring further.

# {{css}} helper

- URL: https://getpublii.com/dev/css-helper/
- Published: 2017-08-04T22:27:07.144Z
- Updated: 2024-02-08T09:40:32.294Z
- Description: It creates URL to the CSS file from the css catalog in the assets directory. Additionally, it adds to the file URL the v= param.
- Author: Tomasz Dziuda
- Tags: Helpers

It creates URL to the CSS file from the **css** catalog in the assets directory. Additionally, it adds to the file URL the **v=** param.

Syntax:

```handlebars
{{css "filepath.css"}}
```

Example:

```html
<link rel="stylesheet" href="{{css "main.css"}}" />
```

Example output:

```html
<link rel="stylesheet" href="https://example.com/assets/css/main.css?v=a928f6898da46898a928f6898da46898" />
```
