{{ post.title }}
\n \n{{ post.content }}
\n \n {% endif %}\n\n{ "info": { "author": "Sreejith K / K7Computing Pvt Ltd", "author_email": "sreejithemk@gmail.com", "bugtrack_url": null, "classifiers": [ "Environment :: Web Environment", "Operating System :: POSIX", "Programming Language :: Python", "Topic :: Internet", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Site Management", "Topic :: Text Processing", "Topic :: Text Processing :: Filters", "Topic :: Text Processing :: Markup", "Topic :: Text Processing :: Markup :: HTML", "Topic :: Utilities" ], "description": "Voldemort\n---------\n\nVoldemort is a simple static site generator using Jinja2 and markdown\ntemplates.\n\nInstallation\n------------\n\n::\n\n sudo python setup.py install\n\nor\n\n::\n\n sudo easy_install -U voldemort\n\nUsage Options\n-------------\n\n::\n\n Usage: voldemort [options]\n\n Options:\n -h, --help show this help message and exit\n -w WORK_DIR, --work_dir=WORK_DIR\n Working Directory\n -s, --serve Start the HTTP Server\n -p PORT, --port=PORT Port inwhich the HTTPServer should run\n -d, --deploy Deploy this website\n -u USER, --user=USER Login name for server\n -a AT, --at=AT Server address to deploy the site\n -t TO, --to=TO Deployment directory\n --skip-blog Skip blog posts generation\n --skip-pages Skip pages generation\n --skip-tags Skip tags generation\n --skip-feeds Skip Atom feed generation\n --skip-sitemap Skip sitemap generation\n\nUsage Example\n-------------\n\nGo to the example directory\n\n::\n\n cd example\n\nand run\n\n::\n\n voldemort\n\nstart the HTTPServer\n\n::\n\n voldemort --serve -p 8080\n\nOpen your browser and see the website in action.\n\nDeploy the website\n\n::\n\n voldemort --deploy -u foobarnb -a foobarnbaz.com -t /home/foobarnbaz/public_html\n\nWriting posts\n-------------\n\nPosts mainly contain 2 sections. Config section and the Template\nsection. All data inside two ``---`` defines the config and are\nvalidated as YAML data. You can set your post related attributes here.\nIn template section you can use Jinja2 templates or Markdown in\n``{% markdown %}`` and ``{% endmarkdown %}`` blocks (You could ignore\nthese blocks if ``layout`` is defined in the metadata section).\n\nAs per Voldemort's default configuration, all base templates should be\nin ``layout`` and ``include`` directories. This is not a hard\nlimitation, but kept for preserving the meaning. Posts are written in a\ndirectory named ``posts``. For example, we have a directory structure as\nshown below\n\n::\n\n layout/\n listing.html\n post.html\n include/\n navigation.html\n posts/\n voldemort-is-awesome.markdown\n index.html\n css/\n screen.css\n pygments.css\n\nAnd we have the following data in ``layout/listing.html``\n\n::\n\n \n \n\n
\n{{ post.content }}
\n \n {% endif %}\n\n