# Yugal Shorthand

Yugal have a shortcut to point to files from `src` directory to make it easier to make projects portable so that projects can be easily deployed.&#x20;

Use `{@}` in path to point at `src/` directory in `Yugal`&#x20;

Example

```php
<?php
return <<<HTML
    <body>
        <img src="{@}/@assets/yugal.png" alt="I am Image bro" />
    </body>
HTML;
?>
```

## Ignored Directories&#x20;

Yugal Router ignores every directory in `src` , the name of which begins with `@` so that developers can make their directories which should be ignored by Yugal's router. So that the inside content of these directories won't get treated as `pages` .


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://yugalphp.gitbook.io/php/frontend-ssg-spa/yugal-shorthand.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
