Metadata-Version: 2.4
Name: dolze-templates
Version: 1.0.6
Summary: Template system for Dolze landing pages
Author-email: Dolze Team <info@dolze.com>
Project-URL: Homepage, https://github.com/dolze/dolze-templates
Project-URL: Bug Tracker, https://github.com/dolze/dolze-templates/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Dolze Templates

A Python package containing templates for Dolze landing pages.

## Installation

```bash
pip install dolze-templates
```

## Usage

```python
from dolze_templates import get_template_registry, get_template_content

# Get the template registry
registry = get_template_registry()

# Get template content
template_html = get_template_content("templates/layouts/brand_product_physical.html")
```

## Template Structure

The package includes:

- Template registry configuration
- Layout templates
- Section templates with variants
- Sample JSON data

## Development

To build the package locally:

```bash
pip install -e .
```
