├── .gitignore ├── documentation ├── config.yaml ├── content │ ├── features.yaml │ └── index.yaml ├── output │ ├── features │ │ ├── dynamic-pages.html │ │ └── pages.html │ └── index.html └── templates │ ├── base.html │ └── main.html ├── rabbitfish ├── __init__.py ├── cli.py ├── jug.py └── pages.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | -------------------------------------------------------------------------------- /documentation/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshourisman/rabbitfish/HEAD/documentation/config.yaml -------------------------------------------------------------------------------- /documentation/content/features.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshourisman/rabbitfish/HEAD/documentation/content/features.yaml -------------------------------------------------------------------------------- /documentation/content/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshourisman/rabbitfish/HEAD/documentation/content/index.yaml -------------------------------------------------------------------------------- /documentation/output/features/dynamic-pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshourisman/rabbitfish/HEAD/documentation/output/features/dynamic-pages.html -------------------------------------------------------------------------------- /documentation/output/features/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshourisman/rabbitfish/HEAD/documentation/output/features/pages.html -------------------------------------------------------------------------------- /documentation/output/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshourisman/rabbitfish/HEAD/documentation/output/index.html -------------------------------------------------------------------------------- /documentation/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshourisman/rabbitfish/HEAD/documentation/templates/base.html -------------------------------------------------------------------------------- /documentation/templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshourisman/rabbitfish/HEAD/documentation/templates/main.html -------------------------------------------------------------------------------- /rabbitfish/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rabbitfish/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshourisman/rabbitfish/HEAD/rabbitfish/cli.py -------------------------------------------------------------------------------- /rabbitfish/jug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshourisman/rabbitfish/HEAD/rabbitfish/jug.py -------------------------------------------------------------------------------- /rabbitfish/pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshourisman/rabbitfish/HEAD/rabbitfish/pages.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | jinja2 2 | pyyaml 3 | --------------------------------------------------------------------------------