├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── deploy.sh ├── docs ├── Makefile ├── _themes │ ├── LICENSE │ ├── README │ ├── flask │ │ ├── layout.html │ │ ├── relations.html │ │ ├── static │ │ │ └── flasky.css_t │ │ └── theme.conf │ ├── flask_small │ │ ├── layout.html │ │ ├── static │ │ │ └── flasky.css_t │ │ └── theme.conf │ └── flask_theme_support.py └── source │ ├── _themes │ ├── LICENSE │ ├── README │ ├── flask │ │ ├── layout.html │ │ ├── relations.html │ │ ├── static │ │ │ └── flasky.css_t │ │ └── theme.conf │ ├── flask_small │ │ ├── layout.html │ │ ├── static │ │ │ └── flasky.css_t │ │ └── theme.conf │ └── flask_theme_support.py │ ├── conf.py │ ├── documentation.rst │ └── index.rst ├── flask_zurb_foundation ├── __init__.py ├── static │ ├── css │ │ ├── foundation-icons.css │ │ ├── foundation-icons.eot │ │ ├── foundation-icons.svg │ │ ├── foundation-icons.ttf │ │ ├── foundation-icons.woff │ │ ├── foundation.css │ │ ├── foundation.min.css │ │ ├── normalize.css │ │ ├── preview.html │ │ └── svgs │ │ │ ├── fi-address-book.svg │ │ │ ├── fi-alert.svg │ │ │ ├── fi-align-center.svg │ │ │ ├── fi-align-justify.svg │ │ │ ├── fi-align-left.svg │ │ │ ├── fi-align-right.svg │ │ │ ├── fi-anchor.svg │ │ │ ├── fi-annotate.svg │ │ │ ├── fi-archive.svg │ │ │ ├── fi-arrow-down.svg │ │ │ ├── fi-arrow-left.svg │ │ │ ├── fi-arrow-right.svg │ │ │ ├── fi-arrow-up.svg │ │ │ ├── fi-arrows-compress.svg │ │ │ ├── fi-arrows-expand.svg │ │ │ ├── fi-arrows-in.svg │ │ │ ├── fi-arrows-out.svg │ │ │ ├── fi-asl.svg │ │ │ ├── fi-asterisk.svg │ │ │ ├── fi-at-sign.svg │ │ │ ├── fi-background-color.svg │ │ │ ├── fi-battery-empty.svg │ │ │ ├── fi-battery-full.svg │ │ │ ├── fi-battery-half.svg │ │ │ ├── fi-bitcoin-circle.svg │ │ │ ├── fi-bitcoin.svg │ │ │ ├── fi-blind.svg │ │ │ ├── fi-bluetooth.svg │ │ │ ├── fi-bold.svg │ │ │ ├── fi-book-bookmark.svg │ │ │ ├── fi-book.svg │ │ │ ├── fi-bookmark.svg │ │ │ ├── fi-braille.svg │ │ │ ├── fi-burst-new.svg │ │ │ ├── fi-burst-sale.svg │ │ │ ├── fi-burst.svg │ │ │ ├── fi-calendar.svg │ │ │ ├── fi-camera.svg │ │ │ ├── fi-check.svg │ │ │ ├── fi-checkbox.svg │ │ │ ├── fi-clipboard-notes.svg │ │ │ ├── fi-clipboard-pencil.svg │ │ │ ├── fi-clipboard.svg │ │ │ ├── fi-clock.svg │ │ │ ├── fi-closed-caption.svg │ │ │ ├── fi-cloud.svg │ │ │ ├── fi-comment-minus.svg │ │ │ ├── fi-comment-quotes.svg │ │ │ ├── fi-comment-video.svg │ │ │ ├── fi-comment.svg │ │ │ ├── fi-comments.svg │ │ │ ├── fi-compass.svg │ │ │ ├── fi-contrast.svg │ │ │ ├── fi-credit-card.svg │ │ │ ├── fi-crop.svg │ │ │ ├── fi-crown.svg │ │ │ ├── fi-css3.svg │ │ │ ├── fi-database.svg │ │ │ ├── fi-die-five.svg │ │ │ ├── fi-die-four.svg │ │ │ ├── fi-die-one.svg │ │ │ ├── fi-die-six.svg │ │ │ ├── fi-die-three.svg │ │ │ ├── fi-die-two.svg │ │ │ ├── fi-dislike.svg │ │ │ ├── fi-dollar-bill.svg │ │ │ ├── fi-dollar.svg │ │ │ ├── fi-download.svg │ │ │ ├── fi-eject.svg │ │ │ ├── fi-elevator.svg │ │ │ ├── fi-euro.svg │ │ │ ├── fi-eye.svg │ │ │ ├── fi-fast-forward.svg │ │ │ ├── fi-female-symbol.svg │ │ │ ├── fi-female.svg │ │ │ ├── fi-filter.svg │ │ │ ├── fi-first-aid.svg │ │ │ ├── fi-flag.svg │ │ │ ├── fi-folder-add.svg │ │ │ ├── fi-folder-lock.svg │ │ │ ├── fi-folder.svg │ │ │ ├── fi-foot.svg │ │ │ ├── fi-foundation.svg │ │ │ ├── fi-graph-bar.svg │ │ │ ├── fi-graph-horizontal.svg │ │ │ ├── fi-graph-pie.svg │ │ │ ├── fi-graph-trend.svg │ │ │ ├── fi-guide-dog.svg │ │ │ ├── fi-hearing-aid.svg │ │ │ ├── fi-heart.svg │ │ │ ├── fi-home.svg │ │ │ ├── fi-html5.svg │ │ │ ├── fi-indent-less.svg │ │ │ ├── fi-indent-more.svg │ │ │ ├── fi-info.svg │ │ │ ├── fi-italic.svg │ │ │ ├── fi-key.svg │ │ │ ├── fi-laptop.svg │ │ │ ├── fi-layout.svg │ │ │ ├── fi-lightbulb.svg │ │ │ ├── fi-like.svg │ │ │ ├── fi-link.svg │ │ │ ├── fi-list-bullet.svg │ │ │ ├── fi-list-number.svg │ │ │ ├── fi-list-thumbnails.svg │ │ │ ├── fi-list.svg │ │ │ ├── fi-lock.svg │ │ │ ├── fi-loop.svg │ │ │ ├── fi-magnifying-glass.svg │ │ │ ├── fi-mail.svg │ │ │ ├── fi-male-female.svg │ │ │ ├── fi-male-symbol.svg │ │ │ ├── fi-male.svg │ │ │ ├── fi-map.svg │ │ │ ├── fi-marker.svg │ │ │ ├── fi-megaphone.svg │ │ │ ├── fi-microphone.svg │ │ │ ├── fi-minus-circle.svg │ │ │ ├── fi-minus.svg │ │ │ ├── fi-mobile-signal.svg │ │ │ ├── fi-mobile.svg │ │ │ ├── fi-monitor.svg │ │ │ ├── fi-mountains.svg │ │ │ ├── fi-music.svg │ │ │ ├── fi-next.svg │ │ │ ├── fi-no-dogs.svg │ │ │ ├── fi-no-smoking.svg │ │ │ ├── fi-page-add.svg │ │ │ ├── fi-page-copy.svg │ │ │ ├── fi-page-csv.svg │ │ │ ├── fi-page-delete.svg │ │ │ ├── fi-page-doc.svg │ │ │ ├── fi-page-edit.svg │ │ │ ├── fi-page-export-csv.svg │ │ │ ├── fi-page-export-doc.svg │ │ │ ├── fi-page-export-pdf.svg │ │ │ ├── fi-page-export.svg │ │ │ ├── fi-page-filled.svg │ │ │ ├── fi-page-multiple.svg │ │ │ ├── fi-page-pdf.svg │ │ │ ├── fi-page-remove.svg │ │ │ ├── fi-page-search.svg │ │ │ ├── fi-page.svg │ │ │ ├── fi-paint-bucket.svg │ │ │ ├── fi-paperclip.svg │ │ │ ├── fi-pause.svg │ │ │ ├── fi-paw.svg │ │ │ ├── fi-paypal.svg │ │ │ ├── fi-pencil.svg │ │ │ ├── fi-photo.svg │ │ │ ├── fi-play-circle.svg │ │ │ ├── fi-play-video.svg │ │ │ ├── fi-play.svg │ │ │ ├── fi-plus.svg │ │ │ ├── fi-pound.svg │ │ │ ├── fi-power.svg │ │ │ ├── fi-previous.svg │ │ │ ├── fi-price-tag.svg │ │ │ ├── fi-pricetag-multiple.svg │ │ │ ├── fi-print.svg │ │ │ ├── fi-prohibited.svg │ │ │ ├── fi-projection-screen.svg │ │ │ ├── fi-puzzle.svg │ │ │ ├── fi-quote.svg │ │ │ ├── fi-record.svg │ │ │ ├── fi-refresh.svg │ │ │ ├── fi-results-demographics.svg │ │ │ ├── fi-results.svg │ │ │ ├── fi-rewind-ten.svg │ │ │ ├── fi-rewind.svg │ │ │ ├── fi-rss.svg │ │ │ ├── fi-safety-cone.svg │ │ │ ├── fi-save.svg │ │ │ ├── fi-share.svg │ │ │ ├── fi-sheriff-badge.svg │ │ │ ├── fi-shield.svg │ │ │ ├── fi-shopping-bag.svg │ │ │ ├── fi-shopping-cart.svg │ │ │ ├── fi-shuffle.svg │ │ │ ├── fi-skull.svg │ │ │ ├── fi-social-500px.svg │ │ │ ├── fi-social-adobe.svg │ │ │ ├── fi-social-amazon.svg │ │ │ ├── fi-social-android.svg │ │ │ ├── fi-social-apple.svg │ │ │ ├── fi-social-behance.svg │ │ │ ├── fi-social-bing.svg │ │ │ ├── fi-social-blogger.svg │ │ │ ├── fi-social-delicious.svg │ │ │ ├── fi-social-designer-news.svg │ │ │ ├── fi-social-deviant-art.svg │ │ │ ├── fi-social-digg.svg │ │ │ ├── fi-social-dribbble.svg │ │ │ ├── fi-social-drive.svg │ │ │ ├── fi-social-dropbox.svg │ │ │ ├── fi-social-evernote.svg │ │ │ ├── fi-social-facebook.svg │ │ │ ├── fi-social-flickr.svg │ │ │ ├── fi-social-forrst.svg │ │ │ ├── fi-social-foursquare.svg │ │ │ ├── fi-social-game-center.svg │ │ │ ├── fi-social-github.svg │ │ │ ├── fi-social-google-plus.svg │ │ │ ├── fi-social-hacker-news.svg │ │ │ ├── fi-social-hi5.svg │ │ │ ├── fi-social-instagram.svg │ │ │ ├── fi-social-joomla.svg │ │ │ ├── fi-social-lastfm.svg │ │ │ ├── fi-social-linkedin.svg │ │ │ ├── fi-social-medium.svg │ │ │ ├── fi-social-myspace.svg │ │ │ ├── fi-social-orkut.svg │ │ │ ├── fi-social-path.svg │ │ │ ├── fi-social-picasa.svg │ │ │ ├── fi-social-pinterest.svg │ │ │ ├── fi-social-rdio.svg │ │ │ ├── fi-social-reddit.svg │ │ │ ├── fi-social-skillshare.svg │ │ │ ├── fi-social-skype.svg │ │ │ ├── fi-social-smashing-mag.svg │ │ │ ├── fi-social-snapchat.svg │ │ │ ├── fi-social-spotify.svg │ │ │ ├── fi-social-squidoo.svg │ │ │ ├── fi-social-stack-overflow.svg │ │ │ ├── fi-social-steam.svg │ │ │ ├── fi-social-stumbleupon.svg │ │ │ ├── fi-social-treehouse.svg │ │ │ ├── fi-social-tumblr.svg │ │ │ ├── fi-social-twitter.svg │ │ │ ├── fi-social-vimeo.svg │ │ │ ├── fi-social-windows.svg │ │ │ ├── fi-social-xbox.svg │ │ │ ├── fi-social-yahoo.svg │ │ │ ├── fi-social-yelp.svg │ │ │ ├── fi-social-youtube.svg │ │ │ ├── fi-social-zerply.svg │ │ │ ├── fi-social-zurb.svg │ │ │ ├── fi-sound.svg │ │ │ ├── fi-star.svg │ │ │ ├── fi-stop.svg │ │ │ ├── fi-strikethrough.svg │ │ │ ├── fi-subscript.svg │ │ │ ├── fi-superscript.svg │ │ │ ├── fi-tablet-landscape.svg │ │ │ ├── fi-tablet-portrait.svg │ │ │ ├── fi-target-two.svg │ │ │ ├── fi-target.svg │ │ │ ├── fi-telephone-accessible.svg │ │ │ ├── fi-telephone.svg │ │ │ ├── fi-text-color.svg │ │ │ ├── fi-thumbnails.svg │ │ │ ├── fi-ticket.svg │ │ │ ├── fi-torso-business.svg │ │ │ ├── fi-torso-female.svg │ │ │ ├── fi-torso.svg │ │ │ ├── fi-torsos-all-female.svg │ │ │ ├── fi-torsos-all.svg │ │ │ ├── fi-torsos-female-male.svg │ │ │ ├── fi-torsos-male-female.svg │ │ │ ├── fi-torsos.svg │ │ │ ├── fi-trash.svg │ │ │ ├── fi-trees.svg │ │ │ ├── fi-trophy.svg │ │ │ ├── fi-underline.svg │ │ │ ├── fi-universal-access.svg │ │ │ ├── fi-unlink.svg │ │ │ ├── fi-unlock.svg │ │ │ ├── fi-upload-cloud.svg │ │ │ ├── fi-upload.svg │ │ │ ├── fi-usb.svg │ │ │ ├── fi-video.svg │ │ │ ├── fi-volume-none.svg │ │ │ ├── fi-volume-strike.svg │ │ │ ├── fi-volume.svg │ │ │ ├── fi-web.svg │ │ │ ├── fi-wheelchair.svg │ │ │ ├── fi-widget.svg │ │ │ ├── fi-wrench.svg │ │ │ ├── fi-x-circle.svg │ │ │ ├── fi-x.svg │ │ │ ├── fi-yen.svg │ │ │ ├── fi-zoom-in.svg │ │ │ └── fi-zoom-out.svg │ ├── img │ │ ├── .gitkeep │ │ └── svgs │ │ │ ├── fi-address-book.svg │ │ │ ├── fi-alert.svg │ │ │ ├── fi-align-center.svg │ │ │ ├── fi-align-justify.svg │ │ │ ├── fi-align-left.svg │ │ │ ├── fi-align-right.svg │ │ │ ├── fi-anchor.svg │ │ │ ├── fi-annotate.svg │ │ │ ├── fi-archive.svg │ │ │ ├── fi-arrow-down.svg │ │ │ ├── fi-arrow-left.svg │ │ │ ├── fi-arrow-right.svg │ │ │ ├── fi-arrow-up.svg │ │ │ ├── fi-arrows-compress.svg │ │ │ ├── fi-arrows-expand.svg │ │ │ ├── fi-arrows-in.svg │ │ │ ├── fi-arrows-out.svg │ │ │ ├── fi-asl.svg │ │ │ ├── fi-asterisk.svg │ │ │ ├── fi-at-sign.svg │ │ │ ├── fi-background-color.svg │ │ │ ├── fi-battery-empty.svg │ │ │ ├── fi-battery-full.svg │ │ │ ├── fi-battery-half.svg │ │ │ ├── fi-bitcoin-circle.svg │ │ │ ├── fi-bitcoin.svg │ │ │ ├── fi-blind.svg │ │ │ ├── fi-bluetooth.svg │ │ │ ├── fi-bold.svg │ │ │ ├── fi-book-bookmark.svg │ │ │ ├── fi-book.svg │ │ │ ├── fi-bookmark.svg │ │ │ ├── fi-braille.svg │ │ │ ├── fi-burst-new.svg │ │ │ ├── fi-burst-sale.svg │ │ │ ├── fi-burst.svg │ │ │ ├── fi-calendar.svg │ │ │ ├── fi-camera.svg │ │ │ ├── fi-check.svg │ │ │ ├── fi-checkbox.svg │ │ │ ├── fi-clipboard-notes.svg │ │ │ ├── fi-clipboard-pencil.svg │ │ │ ├── fi-clipboard.svg │ │ │ ├── fi-clock.svg │ │ │ ├── fi-closed-caption.svg │ │ │ ├── fi-cloud.svg │ │ │ ├── fi-comment-minus.svg │ │ │ ├── fi-comment-quotes.svg │ │ │ ├── fi-comment-video.svg │ │ │ ├── fi-comment.svg │ │ │ ├── fi-comments.svg │ │ │ ├── fi-compass.svg │ │ │ ├── fi-contrast.svg │ │ │ ├── fi-credit-card.svg │ │ │ ├── fi-crop.svg │ │ │ ├── fi-crown.svg │ │ │ ├── fi-css3.svg │ │ │ ├── fi-database.svg │ │ │ ├── fi-die-five.svg │ │ │ ├── fi-die-four.svg │ │ │ ├── fi-die-one.svg │ │ │ ├── fi-die-six.svg │ │ │ ├── fi-die-three.svg │ │ │ ├── fi-die-two.svg │ │ │ ├── fi-dislike.svg │ │ │ ├── fi-dollar-bill.svg │ │ │ ├── fi-dollar.svg │ │ │ ├── fi-download.svg │ │ │ ├── fi-eject.svg │ │ │ ├── fi-elevator.svg │ │ │ ├── fi-euro.svg │ │ │ ├── fi-eye.svg │ │ │ ├── fi-fast-forward.svg │ │ │ ├── fi-female-symbol.svg │ │ │ ├── fi-female.svg │ │ │ ├── fi-filter.svg │ │ │ ├── fi-first-aid.svg │ │ │ ├── fi-flag.svg │ │ │ ├── fi-folder-add.svg │ │ │ ├── fi-folder-lock.svg │ │ │ ├── fi-folder.svg │ │ │ ├── fi-foot.svg │ │ │ ├── fi-foundation.svg │ │ │ ├── fi-graph-bar.svg │ │ │ ├── fi-graph-horizontal.svg │ │ │ ├── fi-graph-pie.svg │ │ │ ├── fi-graph-trend.svg │ │ │ ├── fi-guide-dog.svg │ │ │ ├── fi-hearing-aid.svg │ │ │ ├── fi-heart.svg │ │ │ ├── fi-home.svg │ │ │ ├── fi-html5.svg │ │ │ ├── fi-indent-less.svg │ │ │ ├── fi-indent-more.svg │ │ │ ├── fi-info.svg │ │ │ ├── fi-italic.svg │ │ │ ├── fi-key.svg │ │ │ ├── fi-laptop.svg │ │ │ ├── fi-layout.svg │ │ │ ├── fi-lightbulb.svg │ │ │ ├── fi-like.svg │ │ │ ├── fi-link.svg │ │ │ ├── fi-list-bullet.svg │ │ │ ├── fi-list-number.svg │ │ │ ├── fi-list-thumbnails.svg │ │ │ ├── fi-list.svg │ │ │ ├── fi-lock.svg │ │ │ ├── fi-loop.svg │ │ │ ├── fi-magnifying-glass.svg │ │ │ ├── fi-mail.svg │ │ │ ├── fi-male-female.svg │ │ │ ├── fi-male-symbol.svg │ │ │ ├── fi-male.svg │ │ │ ├── fi-map.svg │ │ │ ├── fi-marker.svg │ │ │ ├── fi-megaphone.svg │ │ │ ├── fi-microphone.svg │ │ │ ├── fi-minus-circle.svg │ │ │ ├── fi-minus.svg │ │ │ ├── fi-mobile-signal.svg │ │ │ ├── fi-mobile.svg │ │ │ ├── fi-monitor.svg │ │ │ ├── fi-mountains.svg │ │ │ ├── fi-music.svg │ │ │ ├── fi-next.svg │ │ │ ├── fi-no-dogs.svg │ │ │ ├── fi-no-smoking.svg │ │ │ ├── fi-page-add.svg │ │ │ ├── fi-page-copy.svg │ │ │ ├── fi-page-csv.svg │ │ │ ├── fi-page-delete.svg │ │ │ ├── fi-page-doc.svg │ │ │ ├── fi-page-edit.svg │ │ │ ├── fi-page-export-csv.svg │ │ │ ├── fi-page-export-doc.svg │ │ │ ├── fi-page-export-pdf.svg │ │ │ ├── fi-page-export.svg │ │ │ ├── fi-page-filled.svg │ │ │ ├── fi-page-multiple.svg │ │ │ ├── fi-page-pdf.svg │ │ │ ├── fi-page-remove.svg │ │ │ ├── fi-page-search.svg │ │ │ ├── fi-page.svg │ │ │ ├── fi-paint-bucket.svg │ │ │ ├── fi-paperclip.svg │ │ │ ├── fi-pause.svg │ │ │ ├── fi-paw.svg │ │ │ ├── fi-paypal.svg │ │ │ ├── fi-pencil.svg │ │ │ ├── fi-photo.svg │ │ │ ├── fi-play-circle.svg │ │ │ ├── fi-play-video.svg │ │ │ ├── fi-play.svg │ │ │ ├── fi-plus.svg │ │ │ ├── fi-pound.svg │ │ │ ├── fi-power.svg │ │ │ ├── fi-previous.svg │ │ │ ├── fi-price-tag.svg │ │ │ ├── fi-pricetag-multiple.svg │ │ │ ├── fi-print.svg │ │ │ ├── fi-prohibited.svg │ │ │ ├── fi-projection-screen.svg │ │ │ ├── fi-puzzle.svg │ │ │ ├── fi-quote.svg │ │ │ ├── fi-record.svg │ │ │ ├── fi-refresh.svg │ │ │ ├── fi-results-demographics.svg │ │ │ ├── fi-results.svg │ │ │ ├── fi-rewind-ten.svg │ │ │ ├── fi-rewind.svg │ │ │ ├── fi-rss.svg │ │ │ ├── fi-safety-cone.svg │ │ │ ├── fi-save.svg │ │ │ ├── fi-share.svg │ │ │ ├── fi-sheriff-badge.svg │ │ │ ├── fi-shield.svg │ │ │ ├── fi-shopping-bag.svg │ │ │ ├── fi-shopping-cart.svg │ │ │ ├── fi-shuffle.svg │ │ │ ├── fi-skull.svg │ │ │ ├── fi-social-500px.svg │ │ │ ├── fi-social-adobe.svg │ │ │ ├── fi-social-amazon.svg │ │ │ ├── fi-social-android.svg │ │ │ ├── fi-social-apple.svg │ │ │ ├── fi-social-behance.svg │ │ │ ├── fi-social-bing.svg │ │ │ ├── fi-social-blogger.svg │ │ │ ├── fi-social-delicious.svg │ │ │ ├── fi-social-designer-news.svg │ │ │ ├── fi-social-deviant-art.svg │ │ │ ├── fi-social-digg.svg │ │ │ ├── fi-social-dribbble.svg │ │ │ ├── fi-social-drive.svg │ │ │ ├── fi-social-dropbox.svg │ │ │ ├── fi-social-evernote.svg │ │ │ ├── fi-social-facebook.svg │ │ │ ├── fi-social-flickr.svg │ │ │ ├── fi-social-forrst.svg │ │ │ ├── fi-social-foursquare.svg │ │ │ ├── fi-social-game-center.svg │ │ │ ├── fi-social-github.svg │ │ │ ├── fi-social-google-plus.svg │ │ │ ├── fi-social-hacker-news.svg │ │ │ ├── fi-social-hi5.svg │ │ │ ├── fi-social-instagram.svg │ │ │ ├── fi-social-joomla.svg │ │ │ ├── fi-social-lastfm.svg │ │ │ ├── fi-social-linkedin.svg │ │ │ ├── fi-social-medium.svg │ │ │ ├── fi-social-myspace.svg │ │ │ ├── fi-social-orkut.svg │ │ │ ├── fi-social-path.svg │ │ │ ├── fi-social-picasa.svg │ │ │ ├── fi-social-pinterest.svg │ │ │ ├── fi-social-rdio.svg │ │ │ ├── fi-social-reddit.svg │ │ │ ├── fi-social-skillshare.svg │ │ │ ├── fi-social-skype.svg │ │ │ ├── fi-social-smashing-mag.svg │ │ │ ├── fi-social-snapchat.svg │ │ │ ├── fi-social-spotify.svg │ │ │ ├── fi-social-squidoo.svg │ │ │ ├── fi-social-stack-overflow.svg │ │ │ ├── fi-social-steam.svg │ │ │ ├── fi-social-stumbleupon.svg │ │ │ ├── fi-social-treehouse.svg │ │ │ ├── fi-social-tumblr.svg │ │ │ ├── fi-social-twitter.svg │ │ │ ├── fi-social-vimeo.svg │ │ │ ├── fi-social-windows.svg │ │ │ ├── fi-social-xbox.svg │ │ │ ├── fi-social-yahoo.svg │ │ │ ├── fi-social-yelp.svg │ │ │ ├── fi-social-youtube.svg │ │ │ ├── fi-social-zerply.svg │ │ │ ├── fi-social-zurb.svg │ │ │ ├── fi-sound.svg │ │ │ ├── fi-star.svg │ │ │ ├── fi-stop.svg │ │ │ ├── fi-strikethrough.svg │ │ │ ├── fi-subscript.svg │ │ │ ├── fi-superscript.svg │ │ │ ├── fi-tablet-landscape.svg │ │ │ ├── fi-tablet-portrait.svg │ │ │ ├── fi-target-two.svg │ │ │ ├── fi-target.svg │ │ │ ├── fi-telephone-accessible.svg │ │ │ ├── fi-telephone.svg │ │ │ ├── fi-text-color.svg │ │ │ ├── fi-thumbnails.svg │ │ │ ├── fi-ticket.svg │ │ │ ├── fi-torso-business.svg │ │ │ ├── fi-torso-female.svg │ │ │ ├── fi-torso.svg │ │ │ ├── fi-torsos-all-female.svg │ │ │ ├── fi-torsos-all.svg │ │ │ ├── fi-torsos-female-male.svg │ │ │ ├── fi-torsos-male-female.svg │ │ │ ├── fi-torsos.svg │ │ │ ├── fi-trash.svg │ │ │ ├── fi-trees.svg │ │ │ ├── fi-trophy.svg │ │ │ ├── fi-underline.svg │ │ │ ├── fi-universal-access.svg │ │ │ ├── fi-unlink.svg │ │ │ ├── fi-unlock.svg │ │ │ ├── fi-upload-cloud.svg │ │ │ ├── fi-upload.svg │ │ │ ├── fi-usb.svg │ │ │ ├── fi-video.svg │ │ │ ├── fi-volume-none.svg │ │ │ ├── fi-volume-strike.svg │ │ │ ├── fi-volume.svg │ │ │ ├── fi-web.svg │ │ │ ├── fi-wheelchair.svg │ │ │ ├── fi-widget.svg │ │ │ ├── fi-wrench.svg │ │ │ ├── fi-x-circle.svg │ │ │ ├── fi-x.svg │ │ │ ├── fi-yen.svg │ │ │ ├── fi-zoom-in.svg │ │ │ └── fi-zoom-out.svg │ └── js │ │ ├── foundation.min.js │ │ ├── foundation │ │ ├── foundation.abide.js │ │ ├── foundation.accordion.js │ │ ├── foundation.alert.js │ │ ├── foundation.clearing.js │ │ ├── foundation.dropdown.js │ │ ├── foundation.equalizer.js │ │ ├── foundation.interchange.js │ │ ├── foundation.joyride.js │ │ ├── foundation.js │ │ ├── foundation.magellan.js │ │ ├── foundation.offcanvas.js │ │ ├── foundation.orbit.js │ │ ├── foundation.reveal.js │ │ ├── foundation.slider.js │ │ ├── foundation.tab.js │ │ ├── foundation.tooltip.js │ │ └── foundation.topbar.js │ │ └── vendor │ │ ├── fastclick.js │ │ ├── jquery.cookie.js │ │ ├── jquery.js │ │ ├── modernizr.js │ │ └── placeholder.js └── templates │ └── foundation │ ├── base.html │ ├── components.html │ ├── fixes.html │ └── google.html ├── requirements.txt ├── run_sample_application.py ├── sample_application ├── __init__.py └── templates │ └── index.html ├── setup.py └── tests ├── test_sample_app.py └── test_sanity.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | 5 | # C extensions 6 | *.so 7 | 8 | # Distribution / packaging 9 | .Python 10 | sample_application/ 11 | run_sample_application.py 12 | env/ 13 | build/ 14 | develop-eggs/ 15 | dist/ 16 | downloads/ 17 | eggs/ 18 | lib/ 19 | lib64/ 20 | parts/ 21 | sdist/ 22 | var/ 23 | *.egg-info/ 24 | .installed.cfg 25 | *.egg 26 | 27 | 28 | # PyInstaller 29 | # Usually these files are written by a python script from a template 30 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 31 | *.manifest 32 | *.spec 33 | 34 | # Installer logs 35 | pip-log.txt 36 | pip-delete-this-directory.txt 37 | 38 | # Unit test / coverage reports 39 | htmlcov/ 40 | .tox/ 41 | .coverage 42 | .cache 43 | nosetests.xml 44 | coverage.xml 45 | 46 | # Translations 47 | *.mo 48 | *.pot 49 | 50 | # Django stuff: 51 | *.log 52 | 53 | # Sphinx documentation 54 | docs/_build/ 55 | 56 | # PyBuilder 57 | target/ 58 | 59 | #tests 60 | 61 | 62 | # IDE archives 63 | 64 | .idea 65 | *.sublime-* -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: python 2 | python: 3 | - 2.7 4 | install: pip install -r requirements.txt 5 | script: 6 | - cd tests 7 | - python test_sample_app.py 8 | - python test_sanity.py 9 | 10 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include flask_zurb_foundation/static * 2 | recursive-include flask_zurb_foundation/templates *.html 3 | include README.rst 4 | -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | #python setup.py sdist upload -r pypitest 3 | python setup.py sdist upload -r pypi -------------------------------------------------------------------------------- /docs/_themes/README: -------------------------------------------------------------------------------- 1 | Flask Sphinx Styles 2 | =================== 3 | 4 | This repository contains sphinx styles for Flask and Flask related 5 | projects. To use this style in your Sphinx documentation, follow 6 | this guide: 7 | 8 | 1. put this folder as _themes into your docs folder. Alternatively 9 | you can also use git submodules to check out the contents there. 10 | 2. add this to your conf.py: 11 | 12 | sys.path.append(os.path.abspath('_themes')) 13 | html_theme_path = ['_themes'] 14 | html_theme = 'flask' 15 | 16 | The following themes exist: 17 | 18 | - 'flask' - the standard flask documentation theme for large 19 | projects 20 | - 'flask_small' - small one-page theme. Intended to be used by 21 | very small addon libraries for flask. 22 | 23 | The following options exist for the flask_small theme: 24 | 25 | [options] 26 | index_logo = '' filename of a picture in _static 27 | to be used as replacement for the 28 | h1 in the index.rst file. 29 | index_logo_height = 120px height of the index logo 30 | github_fork = '' repository name on github for the 31 | "fork me" badge 32 | -------------------------------------------------------------------------------- /docs/_themes/flask/layout.html: -------------------------------------------------------------------------------- 1 | {%- extends "basic/layout.html" %} 2 | {%- block extrahead %} 3 | {{ super() }} 4 | {% if theme_touch_icon %} 5 | 6 | {% endif %} 7 | 8 | {% endblock %} 9 | {%- block relbar2 %}{% endblock %} 10 | {% block header %} 11 | {{ super() }} 12 | {% if pagename == 'index' %} 13 |
14 | {% endif %} 15 | {% endblock %} 16 | {%- block footer %} 17 | 21 | {% if pagename == 'index' %} 22 |
23 | {% endif %} 24 | {%- endblock %} 25 | -------------------------------------------------------------------------------- /docs/_themes/flask/relations.html: -------------------------------------------------------------------------------- 1 |

Related Topics

2 | 20 | -------------------------------------------------------------------------------- /docs/_themes/flask/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | stylesheet = flasky.css 4 | pygments_style = flask_theme_support.FlaskyStyle 5 | 6 | [options] 7 | index_logo = '' 8 | index_logo_height = 120px 9 | touch_icon = 10 | -------------------------------------------------------------------------------- /docs/_themes/flask_small/layout.html: -------------------------------------------------------------------------------- 1 | {% extends "basic/layout.html" %} 2 | {% block header %} 3 | {{ super() }} 4 | {% if pagename == 'index' %} 5 |
6 | {% endif %} 7 | {% endblock %} 8 | {% block footer %} 9 | {% if pagename == 'index' %} 10 |
11 | {% endif %} 12 | {% endblock %} 13 | {# do not display relbars #} 14 | {% block relbar1 %}{% endblock %} 15 | {% block relbar2 %} 16 | {% if theme_github_fork %} 17 | Fork me on GitHub 19 | {% endif %} 20 | {% endblock %} 21 | {% block sidebar1 %}{% endblock %} 22 | {% block sidebar2 %}{% endblock %} 23 | -------------------------------------------------------------------------------- /docs/_themes/flask_small/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | stylesheet = flasky.css 4 | nosidebar = true 5 | pygments_style = flask_theme_support.FlaskyStyle 6 | 7 | [options] 8 | index_logo = '' 9 | index_logo_height = 120px 10 | github_fork = '' 11 | -------------------------------------------------------------------------------- /docs/source/_themes/README: -------------------------------------------------------------------------------- 1 | Flask Sphinx Styles 2 | =================== 3 | 4 | This repository contains sphinx styles for Flask and Flask related 5 | projects. To use this style in your Sphinx documentation, follow 6 | this guide: 7 | 8 | 1. put this folder as _themes into your docs folder. Alternatively 9 | you can also use git submodules to check out the contents there. 10 | 2. add this to your conf.py: 11 | 12 | sys.path.append(os.path.abspath('_themes')) 13 | html_theme_path = ['_themes'] 14 | html_theme = 'flask' 15 | 16 | The following themes exist: 17 | 18 | - 'flask' - the standard flask documentation theme for large 19 | projects 20 | - 'flask_small' - small one-page theme. Intended to be used by 21 | very small addon libraries for flask. 22 | 23 | The following options exist for the flask_small theme: 24 | 25 | [options] 26 | index_logo = '' filename of a picture in _static 27 | to be used as replacement for the 28 | h1 in the index.rst file. 29 | index_logo_height = 120px height of the index logo 30 | github_fork = '' repository name on github for the 31 | "fork me" badge 32 | -------------------------------------------------------------------------------- /docs/source/_themes/flask/layout.html: -------------------------------------------------------------------------------- 1 | {%- extends "basic/layout.html" %} 2 | {%- block extrahead %} 3 | {{ super() }} 4 | {% if theme_touch_icon %} 5 | 6 | {% endif %} 7 | 8 | {% endblock %} 9 | {%- block relbar2 %}{% endblock %} 10 | {% block header %} 11 | {{ super() }} 12 | {% if pagename == 'index' %} 13 |
14 | {% endif %} 15 | {% endblock %} 16 | {%- block footer %} 17 | 21 | {% if pagename == 'index' %} 22 |
23 | {% endif %} 24 | {%- endblock %} 25 | -------------------------------------------------------------------------------- /docs/source/_themes/flask/relations.html: -------------------------------------------------------------------------------- 1 |

Related Topics

2 | 20 | -------------------------------------------------------------------------------- /docs/source/_themes/flask/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | stylesheet = flasky.css 4 | pygments_style = flask_theme_support.FlaskyStyle 5 | 6 | [options] 7 | index_logo = '' 8 | index_logo_height = 120px 9 | touch_icon = 10 | -------------------------------------------------------------------------------- /docs/source/_themes/flask_small/layout.html: -------------------------------------------------------------------------------- 1 | {% extends "basic/layout.html" %} 2 | {% block header %} 3 | {{ super() }} 4 | {% if pagename == 'index' %} 5 |
6 | {% endif %} 7 | {% endblock %} 8 | {% block footer %} 9 | {% if pagename == 'index' %} 10 |
11 | {% endif %} 12 | {% endblock %} 13 | {# do not display relbars #} 14 | {% block relbar1 %}{% endblock %} 15 | {% block relbar2 %} 16 | {% if theme_github_fork %} 17 | Fork me on GitHub 19 | {% endif %} 20 | {% endblock %} 21 | {% block sidebar1 %}{% endblock %} 22 | {% block sidebar2 %}{% endblock %} 23 | -------------------------------------------------------------------------------- /docs/source/_themes/flask_small/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | stylesheet = flasky.css 4 | nosidebar = true 5 | pygments_style = flask_theme_support.FlaskyStyle 6 | 7 | [options] 8 | index_logo = '' 9 | index_logo_height = 120px 10 | github_fork = '' 11 | -------------------------------------------------------------------------------- /docs/source/documentation.rst: -------------------------------------------------------------------------------- 1 | Flask Sphinx Styles 2 | =================== 3 | 4 | This repository contains sphinx styles for Flask and Flask related 5 | projects. To use this style in your Sphinx documentation, follow 6 | this guide: 7 | 8 | 1. put this folder as _themes into your docs folder. Alternatively 9 | you can also use git submodules to check out the contents there. 10 | 2. add this to your conf.py: 11 | 12 | sys.path.append(os.path.abspath('_themes')) 13 | html_theme_path = ['_themes'] 14 | html_theme = 'flask' 15 | 16 | The following themes exist: 17 | 18 | - 'flask' - the standard flask documentation theme for large 19 | projects 20 | - 'flask_small' - small one-page theme. Intended to be used by 21 | very small addon libraries for flask. 22 | 23 | The following options exist for the flask_small theme: 24 | 25 | [options] 26 | index_logo = '' filename of a picture in _static 27 | to be used as replacement for the 28 | h1 in the index.rst file. 29 | index_logo_height = 120px height of the index logo 30 | github_fork = '' repository name on github for the 31 | "fork me" badge 32 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/foundation-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ondoheer/flask-zurb-foundation/1010ce6b558327bc512aae0649d6c1fe01fc3164/flask_zurb_foundation/static/css/foundation-icons.eot -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/foundation-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ondoheer/flask-zurb-foundation/1010ce6b558327bc512aae0649d6c1fe01fc3164/flask_zurb_foundation/static/css/foundation-icons.ttf -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/foundation-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ondoheer/flask-zurb-foundation/1010ce6b558327bc512aae0649d6c1fe01fc3164/flask_zurb_foundation/static/css/foundation-icons.woff -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-arrow-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-arrow-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-background-color.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-battery-empty.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-battery-full.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-battery-half.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-bold.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-bookmark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-braille.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-camera.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-cloud.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-comment-minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 12 | 13 | 14 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-comment-video.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-comment.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-comments.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-contrast.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-credit-card.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-css3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-die-one.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-die-two.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-eye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-fast-forward.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-filter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-flag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-folder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-foot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-heart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-home.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-html5.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-info.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-italic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-layout.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-magnifying-glass.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-marker.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-minus-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-mobile.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-monitor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-mountains.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-music.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-page-copy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 11 | 12 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-page-filled.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-page-multiple.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-page.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-pencil.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-play-video.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-play.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-print.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-prohibited.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-projection-screen.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-record.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-rewind.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-safety-cone.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-share.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-shield.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-shopping-bag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-social-adobe.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-social-bing.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-social-delicious.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-social-drive.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-social-dropbox.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-social-facebook.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-social-flickr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-social-forrst.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-social-hacker-news.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-social-linkedin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-social-medium.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-social-orkut.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-social-path.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-social-rdio.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-social-tumblr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-social-windows.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-social-zurb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-star.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-stop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-tablet-landscape.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-tablet-portrait.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-target.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-torso.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-trash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 10 | 11 | 12 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-underline.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-unlock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-usb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-video.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-volume-none.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/css/svgs/fi-x.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-arrow-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-arrow-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-background-color.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-battery-empty.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-battery-full.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-battery-half.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-bold.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-bookmark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-braille.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-camera.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-cloud.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-comment-minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 12 | 13 | 14 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-comment-video.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-comment.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-comments.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-contrast.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-credit-card.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-css3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-die-one.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-die-two.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-eye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-fast-forward.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-filter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-flag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-folder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-foot.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-heart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-home.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-html5.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-info.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-italic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-layout.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-magnifying-glass.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-marker.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-minus-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-mobile.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-monitor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-mountains.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-music.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-page-copy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 11 | 12 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-page-filled.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-page-multiple.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 11 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-page.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-pencil.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-play-video.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-play.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-print.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-prohibited.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-projection-screen.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-record.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-rewind.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-safety-cone.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-share.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-shield.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-shopping-bag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-social-adobe.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-social-bing.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-social-delicious.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-social-drive.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-social-dropbox.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-social-facebook.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-social-flickr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-social-forrst.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-social-hacker-news.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-social-linkedin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-social-medium.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-social-orkut.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-social-path.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-social-rdio.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-social-tumblr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-social-windows.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-social-zurb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-star.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-stop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-tablet-landscape.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-tablet-portrait.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-target.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-torso.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-trash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 10 | 11 | 12 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-underline.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-unlock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-usb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-video.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-volume-none.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/static/img/svgs/fi-x.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /flask_zurb_foundation/templates/foundation/fixes.html: -------------------------------------------------------------------------------- 1 | {% macro ie8() %} 2 | 6 | {% endmacro %} 7 | -------------------------------------------------------------------------------- /flask_zurb_foundation/templates/foundation/google.html: -------------------------------------------------------------------------------- 1 | {% macro analytics(account) -%} 2 | 13 | {% endmacro %} 14 | 15 | {% macro uanalytics(id, domain) %} 16 | 25 | {% endmacro %} 26 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==1.0 2 | Jinja2==2.11.3 3 | MarkupSafe==0.23 4 | Werkzeug==0.15.3 5 | itsdangerous==0.24 6 | py==1.10.0 7 | pytest==2.6.4 8 | wsgiref==0.1.2 9 | -------------------------------------------------------------------------------- /run_sample_application.py: -------------------------------------------------------------------------------- 1 | # under normal circumstances, this script would not be necessary. the 2 | # sample_application would have its own setup.py and be properly installed; 3 | # however since it is not bundled in the sdist package, we need some hacks 4 | # to make it work 5 | 6 | import os 7 | import sys 8 | 9 | sys.path.append(os.path.dirname(__name__)) 10 | 11 | from sample_application import create_app 12 | 13 | # create an app instance 14 | app = create_app() 15 | 16 | app.run(debug=True) 17 | -------------------------------------------------------------------------------- /sample_application/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask, render_template 2 | from flask_zurb_foundation import Foundation 3 | 4 | 5 | def create_app(): 6 | app = Flask(__name__) 7 | 8 | Foundation(app) 9 | 10 | app.config['secret'] = 'mytoughsecret' 11 | app.config["FOUNDATION_CDN"] 12 | 13 | #app.config["FOUNDATION_TEXT_DIRECTION"] = "rtl" 14 | 15 | 16 | @app.route('/') 17 | def index(): 18 | return render_template('index.html') 19 | 20 | return app 21 | 22 | 23 | if __name__ == '__main__': 24 | create_app().run(debug=True) 25 | 26 | -------------------------------------------------------------------------------- /tests/test_sample_app.py: -------------------------------------------------------------------------------- 1 | import pytest 2 | 3 | @pytest.fixture 4 | def app(): 5 | import sys 6 | sys.path.append('.') 7 | 8 | from sample_application import create_app 9 | 10 | return create_app() 11 | 12 | 13 | @pytest.fixture 14 | def client(): 15 | return app.test_client() 16 | 17 | 18 | def test_index(client): 19 | client.get('/') 20 | -------------------------------------------------------------------------------- /tests/test_sanity.py: -------------------------------------------------------------------------------- 1 | def test_can_import_package(): 2 | import flask_zurb_foundation 3 | 4 | def test_can_initialize_app_and_extesion(): 5 | from flask import Flask 6 | from flask_zurb_foundation import Foundation 7 | 8 | app = Flask(__name__) 9 | Foundation(app) --------------------------------------------------------------------------------