Metadata-Version: 2.1
Name: pyjan26-sitemap
Version: 0.5.0
Summary: A pyjan26 plugin to generate dynamic sitemaps
Home-page: UNKNOWN
Author: Josnin
License: MIT
Project-URL: Source, https://github.com/josnin/pyjan26-plugins/sitemap
Platform: UNKNOWN
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# Sitemap

This plugin generates a dynamic sitemap for projects built w Pyjan26.
It creates a sitemap XML file annd integrates custom collections into the sitemap

## Setup

1. Install the plugin
```python
pip install pyjan26-sitemap
```

2. Add to your settings.py

```python
SITE_NAME = 'https://example.com'
SITEMAPE_CONFIG = [
	{'collection': 'articles', 'changefreq': 'daily', 'priority': 1.0}
] 
```

## Output

Sitemap saved at
```bash
<output_dir>/sitemap.xml
```




