> For the complete documentation index, see [llms.txt](https://docs.aurelia.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.aurelia.io/templates/real-world-recipes/recipes.md).

# Recipes Overview

Real-world, production-ready examples showing Aurelia templates in action. Each recipe is a complete, working example demonstrating multiple templating features working together.

## Available Recipes

### E-Commerce & Shopping

* [**Product Catalog with Search & Filters**](/templates/real-world-recipes/product-catalog.md) - Search, filter, sort products with real-time updates
* [**Shopping Cart**](/templates/real-world-recipes/shopping-cart.md) - Add/remove items, update quantities, calculate totals

### Data Display & Tables

* [**Data Table with Sorting, Filtering & Pagination**](/templates/real-world-recipes/data-table.md) - Complete data table with sorting, filtering, pagination, row selection

### UI Components

* [**Notification/Toast System**](/templates/real-world-recipes/notification-system.md) - Global notifications with auto-dismiss, multiple types, and queue management
* [**Search with Autocomplete**](/templates/real-world-recipes/search-autocomplete.md) - Typeahead search with keyboard navigation and highlighting

## How to Use These Recipes

Each recipe includes:

* **Complete working code** - Copy and paste to get started
* **Feature breakdown** - What templating features are being used
* **Variations** - Common modifications and extensions
* **Related patterns** - Links to similar recipes

## Recipe Template

Looking to contribute a recipe? Follow this structure:

```markdown
# Recipe Name

Brief description of what this recipe demonstrates.

## Live Demo

[Open in StackBlitz](link-to-stackblitz)

## Features Demonstrated

- Feature 1
- Feature 2
- Feature 3

## Code

### View Model (TypeScript)

[code]

### Template (HTML)

[code]

### Styles (CSS) - Optional

[code]

## How It Works

Step-by-step explanation...

## Variations

- Variation 1: Description and code
- Variation 2: Description and code

## Related

- [Related Recipe](link)
- [Related Docs](link)
```

## Contributing

Have a great real-world example? We'd love to include it! Submit a PR with your recipe following the template above.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.aurelia.io/templates/real-world-recipes/recipes.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
