Metadata-Version: 2.1
Name: pyramid-bootstrap
Version: 4.1.0
Summary: Bootstrap 4.0 for Pyramid
Home-page: https://github.com/joeblackwaslike/pyramid_bootstrap
Author: Joe Black
Author-email: me@joeblack.nyc
Maintainer: Joe Black
Maintainer-email: me@joeblack.nyc
License: MIT
Download-URL: https://github.com/joeblackwaslike/pyramid_bootstrap/tarball/v4.1.0
Keywords: pyramid,bootstrap,reponsive,framework
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: Pyramid (>=1.9.1)


pyramid_bootstrap
=================


.. image:: https://travis-ci.org/joeblackwaslike/pyramid_bootstrap.svg?branch=master
   :target: https://travis-ci.org/joeblackwaslike/pyramid_bootstrap
   :alt: Build Status

.. image:: https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat
   :target: https://github.com/joeblackwaslike/pyramid_bootstrap
   :alt: Github Repo

.. image:: https://img.shields.io/pypi/v/pyramid_bootstrap.svg
   :target: https://pypi.python.org/pypi/pyramid_bootstrap
   :alt: Pypi Version

.. image:: https://img.shields.io/pypi/l/pyramid_bootstrap.svg
   :target: https://pypi.python.org/pypi/pyramid_bootstrap
   :alt: Pypi License

.. image:: https://img.shields.io/pypi/wheel/pyramid_bootstrap.svg
   :target: https://pypi.python.org/pypi/pyramid_bootstrap
   :alt: Pypi Wheel

.. image:: https://img.shields.io/pypi/pyversions/pyramid_bootstrap.svg
   :target: https://pypi.python.org/pypi/pyramid_bootstrap
   :alt: Pypi Versions


Maintainer
----------

Joe Black | me@joeblack.nyc | `github <https://github.com/joeblackwaslike>`_

Introduction
------------

Pyramid extension that bundles all bootstrap 4 resources, including
font-awesome.  Allows for locally hosted development and CDN hosted production.

Also includes master layout template for jinja2 and chameleon template languages.

Installation
------------

.. code-block:: shell

   pip3 install pyramid_bootstrap

Usage
-----

App Factory Config
^^^^^^^^^^^^^^^^^^

Include in your pyramid config either through .ini file, ZCML, or in python, ex:

.. code-block:: python

   config.include('pyramid_bootstrap')

Example templates
^^^^^^^^^^^^^^^^^

``home.jinja2``

.. code-block:: jinja2

   {% extends "pyramid_bootstrap:/templates/bs4/layout.jinja2" %}

   {% block title %}Quick Tutorial: {{ name }}{% endblock title %}

   {% block content %}
   <h1>Hi {{ name }}</h1>
   {% endblock content %}

``home.pt``

.. code-block:: chameleon

   <metal:macro use-macro="master">
     <metal:slot fill-slot="title">
       <title>Quick Tutorial: ${name}</title>
     </metal:slot>

     <metal:slot fill-slot="content">
       <h1>Hi ${name}</h1>
       <p>Chameleon is an XML-based templating language</p>
     </metal:slot>
   </metal:macro>

Changes
-------


* `CHANGELOG <CHANGELOG.md>`_


