├── __init__.py ├── __init__.pyc ├── foundation_images.pyc ├── .gitignore ├── README.md ├── foundation_images.py └── LICENSE /__init__.py: -------------------------------------------------------------------------------- 1 | from .foundation_images import * 2 | -------------------------------------------------------------------------------- /__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/foundation_images/master/__init__.pyc -------------------------------------------------------------------------------- /foundation_images.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/foundation_images/master/foundation_images.pyc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[cod] 2 | 3 | # C extensions 4 | *.so 5 | 6 | # Packages 7 | *.egg 8 | *.egg-info 9 | dist 10 | build 11 | eggs 12 | parts 13 | bin 14 | var 15 | sdist 16 | develop-eggs 17 | .installed.cfg 18 | lib 19 | lib64 20 | __pycache__ 21 | 22 | # Installer logs 23 | pip-log.txt 24 | 25 | # Unit test / coverage reports 26 | .coverage 27 | .tox 28 | nosetests.xml 29 | 30 | # Translations 31 | *.mo 32 | 33 | # Mr Developer 34 | .mr.developer.cfg 35 | .project 36 | .pydevproject 37 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | foundation_images 2 | ================= 3 | 4 | A simple Pelican plugin for inserting captioned images into my foundation-default-colours theme which you can download from https://github.com/FuzzyWuzzie/foundation-default-colours. 5 | 6 | It provides a macro in posts to easily insert the following chunk of html: 7 | 8 | ```html 9 |