Metadata-Version: 2.1
Name: ssss
Version: 0.0.1
Summary: ssss, short for Super Simple Static Site, is a static site generator that leverages Jinja and Markdown for creating templates and content. It generates static HTML files for an efficient and lightweight website.
Author: Magnus Åberg
Author-email: himself@magnusaberg.me
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: argparse (>=1.4.0,<2.0.0)
Requires-Dist: importlib-metadata (>=6.3.0,<7.0.0)
Requires-Dist: markdown (>=3.4.3,<4.0.0)
Requires-Dist: pyyaml (>=6.0,<7.0)
Requires-Dist: staticjinja (>=4.1.3,<5.0.0)
Description-Content-Type: text/markdown

# Super Simple Static Site (ssss)

ssss, short for Super Simple Static Site, is a static site generator that leverages Jinja and Markdown for creating
templates and content. It generates static HTML files for an efficient and lightweight website.

## Installation

To install ssss, use the following command:

```bash
pip install ssss
```

## Usage

To initialize a new project, create the default configuration file `ssss.yml`, and build your site, use
the `ssss --init` command. The initialization process also takes care of building the site.

```bash
ssss --init
```

## Configuration

You can configure your site using the `ssss.yml` file. The `site` section allows you to define site-wide variables,
which can be accessed in both content and template files.

```yaml
site:
  title: Super Simple Static Site
  description: A static site generator that uses Jinja and Markdown for templates and content, generating static HTML files.
```
