├── .gitignore ├── .hgignore ├── LICENSE ├── README.md ├── __init__.py ├── deploy ├── crontab ├── gunicorn.conf.py.template ├── local_settings.py.template ├── nginx.conf └── supervisor.conf ├── fabfile.py ├── flat ├── __init__.py ├── admin.py ├── models.py ├── static │ ├── css │ │ ├── animate.css │ │ ├── bootstrap.min.css │ │ ├── font-awesome.min.css │ │ ├── main.css │ │ ├── main.css~ │ │ └── prettyPhoto.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── images │ │ ├── blog │ │ │ ├── avatar.jpg │ │ │ ├── avatar1.png │ │ │ ├── avatar2.png │ │ │ ├── avatar3.png │ │ │ ├── blog1.jpg │ │ │ ├── blog2.jpg │ │ │ ├── thumb1.jpg │ │ │ ├── thumb2.jpg │ │ │ └── thumb3.jpg │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ ├── apple-touch-icon-72-precomposed.png │ │ │ └── favicon.ico │ │ ├── logo.png │ │ ├── portfolio │ │ │ ├── full │ │ │ │ ├── item1.jpg │ │ │ │ ├── item2.jpg │ │ │ │ ├── item3.jpg │ │ │ │ ├── item4.jpg │ │ │ │ ├── item5.jpg │ │ │ │ ├── item6.jpg │ │ │ │ └── item7.jpg │ │ │ ├── recent │ │ │ │ ├── item1.png │ │ │ │ ├── item2.png │ │ │ │ └── item3.png │ │ │ └── thumb │ │ │ │ ├── item1.jpg │ │ │ │ ├── item2.jpg │ │ │ │ ├── item3.jpg │ │ │ │ ├── item4.jpg │ │ │ │ ├── item5.jpg │ │ │ │ ├── item6.jpg │ │ │ │ └── item7.jpg │ │ ├── prettyPhoto │ │ │ ├── dark_rounded │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── contentPattern.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ ├── dark_square │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── contentPattern.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ ├── default │ │ │ │ ├── default_thumb.png │ │ │ │ ├── loader.gif │ │ │ │ ├── sprite.png │ │ │ │ ├── sprite_next.png │ │ │ │ ├── sprite_prev.png │ │ │ │ ├── sprite_x.png │ │ │ │ └── sprite_y.png │ │ │ ├── facebook │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── contentPatternBottom.png │ │ │ │ ├── contentPatternLeft.png │ │ │ │ ├── contentPatternRight.png │ │ │ │ ├── contentPatternTop.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ ├── light_rounded │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ └── light_square │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ ├── slider │ │ │ ├── bg1.jpg │ │ │ ├── bg2.jpg │ │ │ └── bg3.jpg │ │ └── team-member.jpg │ └── js │ │ ├── bootstrap.min.js │ │ ├── html5shiv.js │ │ ├── jquery.isotope.min.js │ │ ├── jquery.js │ │ ├── jquery.prettyPhoto.js │ │ ├── main.js │ │ └── respond.min.js ├── templates │ ├── accounts │ │ ├── account_form.html │ │ ├── account_login.html │ │ ├── account_password_reset.html │ │ ├── account_profile.html │ │ ├── account_profile_update.html │ │ ├── account_signup.html │ │ └── includes │ │ │ ├── user_panel.html │ │ │ └── user_panel_nav.html │ ├── base.html │ ├── blog │ │ ├── blog_post_detail.html │ │ ├── blog_post_list.html │ │ └── includes │ │ │ └── filter_panel.html │ ├── generic │ │ ├── comments.html │ │ └── includes │ │ │ ├── comment.html │ │ │ ├── comment_form.html │ │ │ ├── comments.html │ │ │ ├── disqus_comments.html │ │ │ ├── disqus_counts.html │ │ │ ├── disqus_sso.html │ │ │ └── rating.html │ ├── includes │ │ ├── editable_form.html │ │ ├── editable_loader.html │ │ ├── editable_toolbar.html │ │ ├── footer_scripts.html │ │ ├── form_errors.html │ │ ├── form_fields.html │ │ ├── pagination.html │ │ ├── search_form.html │ │ └── user_panel.html │ ├── index.html │ ├── pages │ │ ├── form.html │ │ ├── gallery.html │ │ ├── index.html │ │ ├── menus │ │ │ ├── admin.html │ │ │ ├── breadcrumb.html │ │ │ ├── dropdown.html │ │ │ ├── footer.html │ │ │ ├── footer_tree.html │ │ │ ├── mobile.html │ │ │ ├── primary.html │ │ │ └── tree.html │ │ ├── page.html │ │ └── richtextpage.html │ └── search_results.html ├── tests.py └── views.py ├── manage.py ├── moderna ├── __init__.py ├── admin.py ├── models.py ├── static │ ├── css │ │ ├── animate.css │ │ ├── bootstrap.min.css │ │ ├── custom-fonts.css │ │ ├── fancybox │ │ │ ├── blank.gif │ │ │ ├── fancybox_loading.gif │ │ │ ├── fancybox_overlay.png │ │ │ ├── fancybox_sprite.png │ │ │ └── jquery.fancybox.css │ │ ├── flexslider.css │ │ ├── font-awesome.css │ │ ├── mezzanine.css │ │ ├── overwrite.css │ │ └── style.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── customicon │ │ │ ├── Icons.eot │ │ │ ├── Icons.svg │ │ │ ├── Icons.ttf │ │ │ └── Icons.woff │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── img │ │ ├── avatar.png │ │ ├── bg_direction_nav.png │ │ ├── dummies │ │ │ ├── blog │ │ │ │ ├── 65x65 │ │ │ │ │ ├── thumb1.jpg │ │ │ │ │ ├── thumb2.jpg │ │ │ │ │ └── thumb3.jpg │ │ │ │ ├── img1.jpg │ │ │ │ ├── img2.jpg │ │ │ │ └── img3.jpg │ │ │ └── dummy-1.jpg │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── nivo-bullets.png │ │ ├── slides │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ └── 3.jpg │ │ └── works │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ └── 8.jpg │ ├── js │ │ ├── animate.js │ │ ├── bootstrap.min.js │ │ ├── custom.js │ │ ├── flexslider │ │ │ ├── jquery.flexslider.js │ │ │ └── setting.js │ │ ├── google-code-prettify │ │ │ ├── prettify.css │ │ │ └── prettify.js │ │ ├── jquery.easing.1.3.js │ │ ├── jquery.fancybox-media.js │ │ ├── jquery.fancybox.pack.js │ │ ├── jquery.flexslider.js │ │ ├── jquery.js │ │ ├── portfolio │ │ │ ├── jquery.quicksand.js │ │ │ └── setting.js │ │ ├── quicksand │ │ │ ├── jquery.quicksand.js │ │ │ └── setting.js │ │ └── validate.js │ └── skins │ │ └── default.css ├── templates │ ├── base.html │ ├── blog │ │ ├── blog_post_detail.html │ │ ├── blog_post_list.html │ │ └── includes │ │ │ └── filter_panel.html │ ├── generic │ │ ├── comments.html │ │ └── includes │ │ │ ├── comment.html │ │ │ ├── comment_form.html │ │ │ ├── comments.html │ │ │ ├── disqus_comments.html │ │ │ ├── disqus_counts.html │ │ │ ├── disqus_sso.html │ │ │ └── rating.html │ ├── index.html │ ├── pages │ │ ├── form.html │ │ ├── gallery.html │ │ ├── index.html │ │ ├── menus │ │ │ ├── admin.html │ │ │ ├── breadcrumb.html │ │ │ ├── dropdown.html │ │ │ ├── footer.html │ │ │ ├── footer_tree.html │ │ │ ├── mobile.html │ │ │ ├── primary.html │ │ │ └── tree.html │ │ ├── page.html │ │ └── richtextpage.html │ └── search_results.html ├── tests.py └── views.py ├── nova ├── __init__.py ├── admin.py ├── models.py ├── static │ ├── css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.min.css │ │ ├── docs.css │ │ ├── font-awesome.min.css │ │ ├── main.css │ │ ├── main.less │ │ ├── mezzanine.css │ │ ├── mixins.css │ │ ├── mixins.less │ │ ├── prettify.css │ │ ├── sl-slide.css │ │ ├── variables.css │ │ └── variables.less │ ├── font │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── images │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ ├── apple-touch-icon-72-precomposed.png │ │ │ └── favicon.ico │ │ ├── logo.png │ │ ├── portfolio │ │ │ ├── full │ │ │ │ ├── item1.jpg │ │ │ │ ├── item2.jpg │ │ │ │ ├── item3.jpg │ │ │ │ ├── item4.jpg │ │ │ │ ├── item5.jpg │ │ │ │ └── item6.jpg │ │ │ └── thumb │ │ │ │ ├── item1.jpg │ │ │ │ ├── item2.jpg │ │ │ │ ├── item3.jpg │ │ │ │ ├── item4.jpg │ │ │ │ ├── item5.jpg │ │ │ │ └── item6.jpg │ │ └── sample │ │ │ ├── avatar.jpg │ │ │ ├── avatar.png │ │ │ ├── blog1.jpg │ │ │ ├── cAvatar.png │ │ │ ├── cAvatar1.jpg │ │ │ ├── cAvatar2.jpg │ │ │ ├── cAvatar3.jpg │ │ │ ├── clients │ │ │ ├── client1.png │ │ │ ├── client2.png │ │ │ ├── client3.png │ │ │ └── client4.png │ │ │ ├── gallery │ │ │ ├── img1.jpg │ │ │ ├── img2.jpg │ │ │ ├── img3.jpg │ │ │ ├── img4.jpg │ │ │ ├── img5.jpg │ │ │ ├── img6.jpg │ │ │ ├── img7.jpg │ │ │ └── img8.jpg │ │ │ ├── img-team-thumb1.png │ │ │ ├── img-team-thumb2.png │ │ │ ├── img-team-thumb3.png │ │ │ ├── img-team-thumb4.png │ │ │ ├── img-testimonial-1.png │ │ │ ├── img-testimonial-2.png │ │ │ ├── img1.jpg │ │ │ ├── img2.jpg │ │ │ ├── index.html │ │ │ ├── map.jpg │ │ │ ├── slider │ │ │ ├── img1.png │ │ │ ├── img2.png │ │ │ └── img3.png │ │ │ ├── team1.jpg │ │ │ ├── team2.jpg │ │ │ ├── team3.jpg │ │ │ ├── team4.jpg │ │ │ └── test.jpg │ └── js │ │ ├── bootstrap.min.js │ │ ├── jquery.ba-cond.min.js │ │ ├── jquery.slitslider.js │ │ ├── main.js │ │ ├── twitter-bootstrap-hover-dropdown.min.js │ │ └── vendor │ │ ├── bootstrap.min.js │ │ ├── jquery-1.9.1.min.js │ │ └── modernizr-2.6.2-respond-1.1.0.min.js ├── templates │ ├── base.html │ ├── blog │ │ ├── blog_post_detail.html │ │ ├── blog_post_list.html │ │ └── includes │ │ │ └── filter_panel.html │ ├── generic │ │ ├── comments.html │ │ └── includes │ │ │ ├── comment.html │ │ │ ├── comment_form.html │ │ │ ├── comments.html │ │ │ ├── disqus_comments.html │ │ │ ├── disqus_counts.html │ │ │ ├── disqus_sso.html │ │ │ └── rating.html │ ├── index.html │ ├── pages │ │ ├── form.html │ │ ├── gallery.html │ │ ├── index.html │ │ ├── menus │ │ │ ├── admin.html │ │ │ ├── breadcrumb.html │ │ │ ├── dropdown.html │ │ │ ├── footer.html │ │ │ ├── footer_tree.html │ │ │ ├── mobile.html │ │ │ ├── primary.html │ │ │ └── tree.html │ │ ├── page.html │ │ └── richtextpage.html │ ├── search_results.html │ └── twitter │ │ └── tweets.html ├── tests.py └── views.py ├── requirements.txt ├── settings.py ├── solid ├── __init__.py ├── admin.py ├── models.py ├── static │ ├── css │ │ ├── bootstrap.css │ │ ├── font-awesome.min.css │ │ ├── hoverex-all.css │ │ ├── images │ │ │ └── prettyPhoto │ │ │ │ ├── dark_rounded │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── contentPattern.png │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ │ ├── dark_square │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ │ ├── default │ │ │ │ ├── default_thumb.png │ │ │ │ ├── loader.gif │ │ │ │ ├── sprite.png │ │ │ │ ├── sprite_next.png │ │ │ │ ├── sprite_prev.png │ │ │ │ ├── sprite_x.png │ │ │ │ └── sprite_y.png │ │ │ │ ├── facebook │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── contentPatternBottom.png │ │ │ │ ├── contentPatternLeft.png │ │ │ │ ├── contentPatternRight.png │ │ │ │ ├── contentPatternTop.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ │ ├── light_rounded │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ │ └── light_square │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ └── sprite.png │ │ ├── mezzanine.css │ │ ├── prettyPhoto.css │ │ └── style.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── img │ │ ├── agency.jpg │ │ ├── browser.png │ │ ├── clients │ │ │ ├── client01.png │ │ │ ├── client02.png │ │ │ ├── client03.png │ │ │ └── client04.png │ │ ├── contact.jpg │ │ ├── portfolio │ │ │ ├── portfolio_01.jpg │ │ │ ├── portfolio_02.jpg │ │ │ ├── portfolio_03.jpg │ │ │ ├── portfolio_04.jpg │ │ │ ├── portfolio_05.jpg │ │ │ ├── portfolio_06.jpg │ │ │ ├── portfolio_07.jpg │ │ │ ├── portfolio_08.jpg │ │ │ ├── portfolio_09.jpg │ │ │ ├── portfolio_10.jpg │ │ │ ├── single01.jpg │ │ │ ├── single02.jpg │ │ │ └── single03.jpg │ │ ├── post01.jpg │ │ ├── post02.jpg │ │ ├── post03.jpg │ │ ├── t-back.jpg │ │ ├── team │ │ │ ├── team01.jpg │ │ │ ├── team02.jpg │ │ │ ├── team03.jpg │ │ │ └── team04.jpg │ │ ├── thumb01.jpg │ │ ├── thumb02.jpg │ │ ├── thumb03.jpg │ │ └── thumb04.jpg │ └── js │ │ ├── bootstrap.min.js │ │ ├── custom.js │ │ ├── jquery.hoverdir.js │ │ ├── jquery.hoverex.min.js │ │ ├── jquery.isotope.min.js │ │ ├── jquery.prettyPhoto.js │ │ └── retina-1.1.0.js ├── templates │ ├── base.html │ ├── blog │ │ ├── blog_post_detail.html │ │ ├── blog_post_list.html │ │ └── includes │ │ │ └── filter_panel.html │ ├── email │ │ ├── base.html │ │ ├── base.txt │ │ ├── comment_notification.html │ │ ├── comment_notification.txt │ │ ├── form_response.html │ │ ├── form_response.txt │ │ ├── form_response_copies.html │ │ └── form_response_copies.txt │ ├── errors │ │ ├── 404.html │ │ └── 500.html │ ├── generic │ │ ├── comments.html │ │ └── includes │ │ │ ├── comment.html │ │ │ ├── comments.html │ │ │ ├── disqus_comments.html │ │ │ ├── disqus_counts.html │ │ │ ├── disqus_sso.html │ │ │ └── rating.html │ ├── includes │ │ ├── editable_form.html │ │ ├── editable_loader.html │ │ ├── editable_toolbar.html │ │ ├── footer_scripts.html │ │ ├── footer_scripts.html~ │ │ ├── form_errors.html │ │ ├── form_fields.html │ │ ├── pagination.html │ │ ├── search_form.html │ │ └── user_panel.html │ ├── index.html │ ├── pages │ │ ├── form.html │ │ ├── gallery.html │ │ ├── index.html │ │ ├── menus │ │ │ ├── admin.html │ │ │ ├── breadcrumb.html │ │ │ ├── dropdown1.html │ │ │ ├── footer.html │ │ │ ├── footer_tree.html │ │ │ ├── mobile.html │ │ │ ├── primary.html │ │ │ └── tree.html │ │ ├── page.html │ │ └── richtextpage.html │ ├── search_results.html │ └── twitter │ │ └── tweets.html ├── tests.py └── views.py ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/.hgignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/deploy/crontab -------------------------------------------------------------------------------- /deploy/gunicorn.conf.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/deploy/gunicorn.conf.py.template -------------------------------------------------------------------------------- /deploy/local_settings.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/deploy/local_settings.py.template -------------------------------------------------------------------------------- /deploy/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/deploy/nginx.conf -------------------------------------------------------------------------------- /deploy/supervisor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/deploy/supervisor.conf -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/fabfile.py -------------------------------------------------------------------------------- /flat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flat/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /flat/models.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /flat/static/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/css/animate.css -------------------------------------------------------------------------------- /flat/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /flat/static/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/css/font-awesome.min.css -------------------------------------------------------------------------------- /flat/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/css/main.css -------------------------------------------------------------------------------- /flat/static/css/main.css~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/css/main.css~ -------------------------------------------------------------------------------- /flat/static/css/prettyPhoto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/css/prettyPhoto.css -------------------------------------------------------------------------------- /flat/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /flat/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /flat/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /flat/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /flat/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /flat/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /flat/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /flat/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /flat/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /flat/static/images/blog/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/blog/avatar.jpg -------------------------------------------------------------------------------- /flat/static/images/blog/avatar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/blog/avatar1.png -------------------------------------------------------------------------------- /flat/static/images/blog/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/blog/avatar2.png -------------------------------------------------------------------------------- /flat/static/images/blog/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/blog/avatar3.png -------------------------------------------------------------------------------- /flat/static/images/blog/blog1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/blog/blog1.jpg -------------------------------------------------------------------------------- /flat/static/images/blog/blog2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/blog/blog2.jpg -------------------------------------------------------------------------------- /flat/static/images/blog/thumb1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/blog/thumb1.jpg -------------------------------------------------------------------------------- /flat/static/images/blog/thumb2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/blog/thumb2.jpg -------------------------------------------------------------------------------- /flat/static/images/blog/thumb3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/blog/thumb3.jpg -------------------------------------------------------------------------------- /flat/static/images/ico/apple-touch-icon-114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/ico/apple-touch-icon-114-precomposed.png -------------------------------------------------------------------------------- /flat/static/images/ico/apple-touch-icon-144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/ico/apple-touch-icon-144-precomposed.png -------------------------------------------------------------------------------- /flat/static/images/ico/apple-touch-icon-57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/ico/apple-touch-icon-57-precomposed.png -------------------------------------------------------------------------------- /flat/static/images/ico/apple-touch-icon-72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/ico/apple-touch-icon-72-precomposed.png -------------------------------------------------------------------------------- /flat/static/images/ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/ico/favicon.ico -------------------------------------------------------------------------------- /flat/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/logo.png -------------------------------------------------------------------------------- /flat/static/images/portfolio/full/item1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/portfolio/full/item1.jpg -------------------------------------------------------------------------------- /flat/static/images/portfolio/full/item2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/portfolio/full/item2.jpg -------------------------------------------------------------------------------- /flat/static/images/portfolio/full/item3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/portfolio/full/item3.jpg -------------------------------------------------------------------------------- /flat/static/images/portfolio/full/item4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/portfolio/full/item4.jpg -------------------------------------------------------------------------------- /flat/static/images/portfolio/full/item5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/portfolio/full/item5.jpg -------------------------------------------------------------------------------- /flat/static/images/portfolio/full/item6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/portfolio/full/item6.jpg -------------------------------------------------------------------------------- /flat/static/images/portfolio/full/item7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/portfolio/full/item7.jpg -------------------------------------------------------------------------------- /flat/static/images/portfolio/recent/item1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/portfolio/recent/item1.png -------------------------------------------------------------------------------- /flat/static/images/portfolio/recent/item2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/portfolio/recent/item2.png -------------------------------------------------------------------------------- /flat/static/images/portfolio/recent/item3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/portfolio/recent/item3.png -------------------------------------------------------------------------------- /flat/static/images/portfolio/thumb/item1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/portfolio/thumb/item1.jpg -------------------------------------------------------------------------------- /flat/static/images/portfolio/thumb/item2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/portfolio/thumb/item2.jpg -------------------------------------------------------------------------------- /flat/static/images/portfolio/thumb/item3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/portfolio/thumb/item3.jpg -------------------------------------------------------------------------------- /flat/static/images/portfolio/thumb/item4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/portfolio/thumb/item4.jpg -------------------------------------------------------------------------------- /flat/static/images/portfolio/thumb/item5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/portfolio/thumb/item5.jpg -------------------------------------------------------------------------------- /flat/static/images/portfolio/thumb/item6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/portfolio/thumb/item6.jpg -------------------------------------------------------------------------------- /flat/static/images/portfolio/thumb/item7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/portfolio/thumb/item7.jpg -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/dark_rounded/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/dark_rounded/btnNext.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/dark_rounded/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/dark_rounded/btnPrevious.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/dark_rounded/contentPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/dark_rounded/contentPattern.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/dark_rounded/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/dark_rounded/default_thumbnail.gif -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/dark_rounded/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/dark_rounded/loader.gif -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/dark_rounded/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/dark_rounded/sprite.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/dark_square/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/dark_square/btnNext.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/dark_square/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/dark_square/btnPrevious.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/dark_square/contentPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/dark_square/contentPattern.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/dark_square/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/dark_square/default_thumbnail.gif -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/dark_square/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/dark_square/loader.gif -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/dark_square/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/dark_square/sprite.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/default/default_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/default/default_thumb.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/default/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/default/loader.gif -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/default/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/default/sprite.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/default/sprite_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/default/sprite_next.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/default/sprite_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/default/sprite_prev.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/default/sprite_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/default/sprite_x.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/default/sprite_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/default/sprite_y.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/facebook/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/facebook/btnNext.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/facebook/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/facebook/btnPrevious.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/facebook/contentPatternBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/facebook/contentPatternBottom.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/facebook/contentPatternLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/facebook/contentPatternLeft.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/facebook/contentPatternRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/facebook/contentPatternRight.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/facebook/contentPatternTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/facebook/contentPatternTop.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/facebook/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/facebook/default_thumbnail.gif -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/facebook/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/facebook/loader.gif -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/facebook/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/facebook/sprite.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/light_rounded/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/light_rounded/btnNext.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/light_rounded/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/light_rounded/btnPrevious.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/light_rounded/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/light_rounded/default_thumbnail.gif -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/light_rounded/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/light_rounded/loader.gif -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/light_rounded/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/light_rounded/sprite.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/light_square/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/light_square/btnNext.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/light_square/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/light_square/btnPrevious.png -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/light_square/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/light_square/default_thumbnail.gif -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/light_square/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/light_square/loader.gif -------------------------------------------------------------------------------- /flat/static/images/prettyPhoto/light_square/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/prettyPhoto/light_square/sprite.png -------------------------------------------------------------------------------- /flat/static/images/slider/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/slider/bg1.jpg -------------------------------------------------------------------------------- /flat/static/images/slider/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/slider/bg2.jpg -------------------------------------------------------------------------------- /flat/static/images/slider/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/slider/bg3.jpg -------------------------------------------------------------------------------- /flat/static/images/team-member.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/images/team-member.jpg -------------------------------------------------------------------------------- /flat/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /flat/static/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/js/html5shiv.js -------------------------------------------------------------------------------- /flat/static/js/jquery.isotope.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/js/jquery.isotope.min.js -------------------------------------------------------------------------------- /flat/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/js/jquery.js -------------------------------------------------------------------------------- /flat/static/js/jquery.prettyPhoto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/js/jquery.prettyPhoto.js -------------------------------------------------------------------------------- /flat/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/js/main.js -------------------------------------------------------------------------------- /flat/static/js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/static/js/respond.min.js -------------------------------------------------------------------------------- /flat/templates/accounts/account_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/accounts/account_form.html -------------------------------------------------------------------------------- /flat/templates/accounts/account_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/accounts/account_login.html -------------------------------------------------------------------------------- /flat/templates/accounts/account_password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/accounts/account_password_reset.html -------------------------------------------------------------------------------- /flat/templates/accounts/account_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/accounts/account_profile.html -------------------------------------------------------------------------------- /flat/templates/accounts/account_profile_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/accounts/account_profile_update.html -------------------------------------------------------------------------------- /flat/templates/accounts/account_signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/accounts/account_signup.html -------------------------------------------------------------------------------- /flat/templates/accounts/includes/user_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/accounts/includes/user_panel.html -------------------------------------------------------------------------------- /flat/templates/accounts/includes/user_panel_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/accounts/includes/user_panel_nav.html -------------------------------------------------------------------------------- /flat/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/base.html -------------------------------------------------------------------------------- /flat/templates/blog/blog_post_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/blog/blog_post_detail.html -------------------------------------------------------------------------------- /flat/templates/blog/blog_post_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/blog/blog_post_list.html -------------------------------------------------------------------------------- /flat/templates/blog/includes/filter_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/blog/includes/filter_panel.html -------------------------------------------------------------------------------- /flat/templates/generic/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/generic/comments.html -------------------------------------------------------------------------------- /flat/templates/generic/includes/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/generic/includes/comment.html -------------------------------------------------------------------------------- /flat/templates/generic/includes/comment_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/generic/includes/comment_form.html -------------------------------------------------------------------------------- /flat/templates/generic/includes/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/generic/includes/comments.html -------------------------------------------------------------------------------- /flat/templates/generic/includes/disqus_comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/generic/includes/disqus_comments.html -------------------------------------------------------------------------------- /flat/templates/generic/includes/disqus_counts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/generic/includes/disqus_counts.html -------------------------------------------------------------------------------- /flat/templates/generic/includes/disqus_sso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/generic/includes/disqus_sso.html -------------------------------------------------------------------------------- /flat/templates/generic/includes/rating.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/generic/includes/rating.html -------------------------------------------------------------------------------- /flat/templates/includes/editable_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/includes/editable_form.html -------------------------------------------------------------------------------- /flat/templates/includes/editable_loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/includes/editable_loader.html -------------------------------------------------------------------------------- /flat/templates/includes/editable_toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/includes/editable_toolbar.html -------------------------------------------------------------------------------- /flat/templates/includes/footer_scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/includes/footer_scripts.html -------------------------------------------------------------------------------- /flat/templates/includes/form_errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/includes/form_errors.html -------------------------------------------------------------------------------- /flat/templates/includes/form_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/includes/form_fields.html -------------------------------------------------------------------------------- /flat/templates/includes/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/includes/pagination.html -------------------------------------------------------------------------------- /flat/templates/includes/search_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/includes/search_form.html -------------------------------------------------------------------------------- /flat/templates/includes/user_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/includes/user_panel.html -------------------------------------------------------------------------------- /flat/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/index.html -------------------------------------------------------------------------------- /flat/templates/pages/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/pages/form.html -------------------------------------------------------------------------------- /flat/templates/pages/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/pages/gallery.html -------------------------------------------------------------------------------- /flat/templates/pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/pages/index.html -------------------------------------------------------------------------------- /flat/templates/pages/menus/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/pages/menus/admin.html -------------------------------------------------------------------------------- /flat/templates/pages/menus/breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/pages/menus/breadcrumb.html -------------------------------------------------------------------------------- /flat/templates/pages/menus/dropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/pages/menus/dropdown.html -------------------------------------------------------------------------------- /flat/templates/pages/menus/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/pages/menus/footer.html -------------------------------------------------------------------------------- /flat/templates/pages/menus/footer_tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/pages/menus/footer_tree.html -------------------------------------------------------------------------------- /flat/templates/pages/menus/mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/pages/menus/mobile.html -------------------------------------------------------------------------------- /flat/templates/pages/menus/primary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/pages/menus/primary.html -------------------------------------------------------------------------------- /flat/templates/pages/menus/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/pages/menus/tree.html -------------------------------------------------------------------------------- /flat/templates/pages/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/pages/page.html -------------------------------------------------------------------------------- /flat/templates/pages/richtextpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/pages/richtextpage.html -------------------------------------------------------------------------------- /flat/templates/search_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/templates/search_results.html -------------------------------------------------------------------------------- /flat/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/flat/tests.py -------------------------------------------------------------------------------- /flat/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/manage.py -------------------------------------------------------------------------------- /moderna/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moderna/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/admin.py -------------------------------------------------------------------------------- /moderna/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/models.py -------------------------------------------------------------------------------- /moderna/static/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/css/animate.css -------------------------------------------------------------------------------- /moderna/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /moderna/static/css/custom-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/css/custom-fonts.css -------------------------------------------------------------------------------- /moderna/static/css/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/css/fancybox/blank.gif -------------------------------------------------------------------------------- /moderna/static/css/fancybox/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/css/fancybox/fancybox_loading.gif -------------------------------------------------------------------------------- /moderna/static/css/fancybox/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/css/fancybox/fancybox_overlay.png -------------------------------------------------------------------------------- /moderna/static/css/fancybox/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/css/fancybox/fancybox_sprite.png -------------------------------------------------------------------------------- /moderna/static/css/fancybox/jquery.fancybox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/css/fancybox/jquery.fancybox.css -------------------------------------------------------------------------------- /moderna/static/css/flexslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/css/flexslider.css -------------------------------------------------------------------------------- /moderna/static/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/css/font-awesome.css -------------------------------------------------------------------------------- /moderna/static/css/mezzanine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/css/mezzanine.css -------------------------------------------------------------------------------- /moderna/static/css/overwrite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/css/overwrite.css -------------------------------------------------------------------------------- /moderna/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/css/style.css -------------------------------------------------------------------------------- /moderna/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /moderna/static/fonts/customicon/Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/fonts/customicon/Icons.eot -------------------------------------------------------------------------------- /moderna/static/fonts/customicon/Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/fonts/customicon/Icons.svg -------------------------------------------------------------------------------- /moderna/static/fonts/customicon/Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/fonts/customicon/Icons.ttf -------------------------------------------------------------------------------- /moderna/static/fonts/customicon/Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/fonts/customicon/Icons.woff -------------------------------------------------------------------------------- /moderna/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /moderna/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /moderna/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /moderna/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /moderna/static/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/avatar.png -------------------------------------------------------------------------------- /moderna/static/img/bg_direction_nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/bg_direction_nav.png -------------------------------------------------------------------------------- /moderna/static/img/dummies/blog/65x65/thumb1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/dummies/blog/65x65/thumb1.jpg -------------------------------------------------------------------------------- /moderna/static/img/dummies/blog/65x65/thumb2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/dummies/blog/65x65/thumb2.jpg -------------------------------------------------------------------------------- /moderna/static/img/dummies/blog/65x65/thumb3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/dummies/blog/65x65/thumb3.jpg -------------------------------------------------------------------------------- /moderna/static/img/dummies/blog/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/dummies/blog/img1.jpg -------------------------------------------------------------------------------- /moderna/static/img/dummies/blog/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/dummies/blog/img2.jpg -------------------------------------------------------------------------------- /moderna/static/img/dummies/blog/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/dummies/blog/img3.jpg -------------------------------------------------------------------------------- /moderna/static/img/dummies/dummy-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/dummies/dummy-1.jpg -------------------------------------------------------------------------------- /moderna/static/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /moderna/static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /moderna/static/img/nivo-bullets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/nivo-bullets.png -------------------------------------------------------------------------------- /moderna/static/img/slides/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/slides/1.jpg -------------------------------------------------------------------------------- /moderna/static/img/slides/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/slides/2.jpg -------------------------------------------------------------------------------- /moderna/static/img/slides/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/slides/3.jpg -------------------------------------------------------------------------------- /moderna/static/img/works/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/works/1.jpg -------------------------------------------------------------------------------- /moderna/static/img/works/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/works/2.jpg -------------------------------------------------------------------------------- /moderna/static/img/works/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/works/3.jpg -------------------------------------------------------------------------------- /moderna/static/img/works/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/works/4.jpg -------------------------------------------------------------------------------- /moderna/static/img/works/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/works/5.jpg -------------------------------------------------------------------------------- /moderna/static/img/works/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/works/6.jpg -------------------------------------------------------------------------------- /moderna/static/img/works/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/works/7.jpg -------------------------------------------------------------------------------- /moderna/static/img/works/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/img/works/8.jpg -------------------------------------------------------------------------------- /moderna/static/js/animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/js/animate.js -------------------------------------------------------------------------------- /moderna/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /moderna/static/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/js/custom.js -------------------------------------------------------------------------------- /moderna/static/js/flexslider/jquery.flexslider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/js/flexslider/jquery.flexslider.js -------------------------------------------------------------------------------- /moderna/static/js/flexslider/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/js/flexslider/setting.js -------------------------------------------------------------------------------- /moderna/static/js/google-code-prettify/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/js/google-code-prettify/prettify.css -------------------------------------------------------------------------------- /moderna/static/js/google-code-prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/js/google-code-prettify/prettify.js -------------------------------------------------------------------------------- /moderna/static/js/jquery.easing.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/js/jquery.easing.1.3.js -------------------------------------------------------------------------------- /moderna/static/js/jquery.fancybox-media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/js/jquery.fancybox-media.js -------------------------------------------------------------------------------- /moderna/static/js/jquery.fancybox.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/js/jquery.fancybox.pack.js -------------------------------------------------------------------------------- /moderna/static/js/jquery.flexslider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/js/jquery.flexslider.js -------------------------------------------------------------------------------- /moderna/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/js/jquery.js -------------------------------------------------------------------------------- /moderna/static/js/portfolio/jquery.quicksand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/js/portfolio/jquery.quicksand.js -------------------------------------------------------------------------------- /moderna/static/js/portfolio/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/js/portfolio/setting.js -------------------------------------------------------------------------------- /moderna/static/js/quicksand/jquery.quicksand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/js/quicksand/jquery.quicksand.js -------------------------------------------------------------------------------- /moderna/static/js/quicksand/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/js/quicksand/setting.js -------------------------------------------------------------------------------- /moderna/static/js/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/js/validate.js -------------------------------------------------------------------------------- /moderna/static/skins/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/static/skins/default.css -------------------------------------------------------------------------------- /moderna/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/base.html -------------------------------------------------------------------------------- /moderna/templates/blog/blog_post_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/blog/blog_post_detail.html -------------------------------------------------------------------------------- /moderna/templates/blog/blog_post_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/blog/blog_post_list.html -------------------------------------------------------------------------------- /moderna/templates/blog/includes/filter_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/blog/includes/filter_panel.html -------------------------------------------------------------------------------- /moderna/templates/generic/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/generic/comments.html -------------------------------------------------------------------------------- /moderna/templates/generic/includes/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/generic/includes/comment.html -------------------------------------------------------------------------------- /moderna/templates/generic/includes/comment_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/generic/includes/comment_form.html -------------------------------------------------------------------------------- /moderna/templates/generic/includes/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/generic/includes/comments.html -------------------------------------------------------------------------------- /moderna/templates/generic/includes/disqus_comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/generic/includes/disqus_comments.html -------------------------------------------------------------------------------- /moderna/templates/generic/includes/disqus_counts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/generic/includes/disqus_counts.html -------------------------------------------------------------------------------- /moderna/templates/generic/includes/disqus_sso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/generic/includes/disqus_sso.html -------------------------------------------------------------------------------- /moderna/templates/generic/includes/rating.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/generic/includes/rating.html -------------------------------------------------------------------------------- /moderna/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/index.html -------------------------------------------------------------------------------- /moderna/templates/pages/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/pages/form.html -------------------------------------------------------------------------------- /moderna/templates/pages/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/pages/gallery.html -------------------------------------------------------------------------------- /moderna/templates/pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/pages/index.html -------------------------------------------------------------------------------- /moderna/templates/pages/menus/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/pages/menus/admin.html -------------------------------------------------------------------------------- /moderna/templates/pages/menus/breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/pages/menus/breadcrumb.html -------------------------------------------------------------------------------- /moderna/templates/pages/menus/dropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/pages/menus/dropdown.html -------------------------------------------------------------------------------- /moderna/templates/pages/menus/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/pages/menus/footer.html -------------------------------------------------------------------------------- /moderna/templates/pages/menus/footer_tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/pages/menus/footer_tree.html -------------------------------------------------------------------------------- /moderna/templates/pages/menus/mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/pages/menus/mobile.html -------------------------------------------------------------------------------- /moderna/templates/pages/menus/primary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/pages/menus/primary.html -------------------------------------------------------------------------------- /moderna/templates/pages/menus/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/pages/menus/tree.html -------------------------------------------------------------------------------- /moderna/templates/pages/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/pages/page.html -------------------------------------------------------------------------------- /moderna/templates/pages/richtextpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/pages/richtextpage.html -------------------------------------------------------------------------------- /moderna/templates/search_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/templates/search_results.html -------------------------------------------------------------------------------- /moderna/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/moderna/tests.py -------------------------------------------------------------------------------- /moderna/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /nova/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nova/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/admin.py -------------------------------------------------------------------------------- /nova/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/models.py -------------------------------------------------------------------------------- /nova/static/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /nova/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /nova/static/css/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/css/docs.css -------------------------------------------------------------------------------- /nova/static/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/css/font-awesome.min.css -------------------------------------------------------------------------------- /nova/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/css/main.css -------------------------------------------------------------------------------- /nova/static/css/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/css/main.less -------------------------------------------------------------------------------- /nova/static/css/mezzanine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/css/mezzanine.css -------------------------------------------------------------------------------- /nova/static/css/mixins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/css/mixins.css -------------------------------------------------------------------------------- /nova/static/css/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/css/mixins.less -------------------------------------------------------------------------------- /nova/static/css/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/css/prettify.css -------------------------------------------------------------------------------- /nova/static/css/sl-slide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/css/sl-slide.css -------------------------------------------------------------------------------- /nova/static/css/variables.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nova/static/css/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/css/variables.less -------------------------------------------------------------------------------- /nova/static/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/font/FontAwesome.otf -------------------------------------------------------------------------------- /nova/static/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /nova/static/font/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/font/fontawesome-webfont.svg -------------------------------------------------------------------------------- /nova/static/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /nova/static/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /nova/static/images/ico/apple-touch-icon-114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/ico/apple-touch-icon-114-precomposed.png -------------------------------------------------------------------------------- /nova/static/images/ico/apple-touch-icon-144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/ico/apple-touch-icon-144-precomposed.png -------------------------------------------------------------------------------- /nova/static/images/ico/apple-touch-icon-57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/ico/apple-touch-icon-57-precomposed.png -------------------------------------------------------------------------------- /nova/static/images/ico/apple-touch-icon-72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/ico/apple-touch-icon-72-precomposed.png -------------------------------------------------------------------------------- /nova/static/images/ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/ico/favicon.ico -------------------------------------------------------------------------------- /nova/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/logo.png -------------------------------------------------------------------------------- /nova/static/images/portfolio/full/item1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/portfolio/full/item1.jpg -------------------------------------------------------------------------------- /nova/static/images/portfolio/full/item2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/portfolio/full/item2.jpg -------------------------------------------------------------------------------- /nova/static/images/portfolio/full/item3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/portfolio/full/item3.jpg -------------------------------------------------------------------------------- /nova/static/images/portfolio/full/item4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/portfolio/full/item4.jpg -------------------------------------------------------------------------------- /nova/static/images/portfolio/full/item5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/portfolio/full/item5.jpg -------------------------------------------------------------------------------- /nova/static/images/portfolio/full/item6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/portfolio/full/item6.jpg -------------------------------------------------------------------------------- /nova/static/images/portfolio/thumb/item1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/portfolio/thumb/item1.jpg -------------------------------------------------------------------------------- /nova/static/images/portfolio/thumb/item2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/portfolio/thumb/item2.jpg -------------------------------------------------------------------------------- /nova/static/images/portfolio/thumb/item3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/portfolio/thumb/item3.jpg -------------------------------------------------------------------------------- /nova/static/images/portfolio/thumb/item4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/portfolio/thumb/item4.jpg -------------------------------------------------------------------------------- /nova/static/images/portfolio/thumb/item5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/portfolio/thumb/item5.jpg -------------------------------------------------------------------------------- /nova/static/images/portfolio/thumb/item6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/portfolio/thumb/item6.jpg -------------------------------------------------------------------------------- /nova/static/images/sample/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/avatar.jpg -------------------------------------------------------------------------------- /nova/static/images/sample/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/avatar.png -------------------------------------------------------------------------------- /nova/static/images/sample/blog1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/blog1.jpg -------------------------------------------------------------------------------- /nova/static/images/sample/cAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/cAvatar.png -------------------------------------------------------------------------------- /nova/static/images/sample/cAvatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/cAvatar1.jpg -------------------------------------------------------------------------------- /nova/static/images/sample/cAvatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/cAvatar2.jpg -------------------------------------------------------------------------------- /nova/static/images/sample/cAvatar3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/cAvatar3.jpg -------------------------------------------------------------------------------- /nova/static/images/sample/clients/client1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/clients/client1.png -------------------------------------------------------------------------------- /nova/static/images/sample/clients/client2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/clients/client2.png -------------------------------------------------------------------------------- /nova/static/images/sample/clients/client3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/clients/client3.png -------------------------------------------------------------------------------- /nova/static/images/sample/clients/client4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/clients/client4.png -------------------------------------------------------------------------------- /nova/static/images/sample/gallery/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/gallery/img1.jpg -------------------------------------------------------------------------------- /nova/static/images/sample/gallery/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/gallery/img2.jpg -------------------------------------------------------------------------------- /nova/static/images/sample/gallery/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/gallery/img3.jpg -------------------------------------------------------------------------------- /nova/static/images/sample/gallery/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/gallery/img4.jpg -------------------------------------------------------------------------------- /nova/static/images/sample/gallery/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/gallery/img5.jpg -------------------------------------------------------------------------------- /nova/static/images/sample/gallery/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/gallery/img6.jpg -------------------------------------------------------------------------------- /nova/static/images/sample/gallery/img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/gallery/img7.jpg -------------------------------------------------------------------------------- /nova/static/images/sample/gallery/img8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/gallery/img8.jpg -------------------------------------------------------------------------------- /nova/static/images/sample/img-team-thumb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/img-team-thumb1.png -------------------------------------------------------------------------------- /nova/static/images/sample/img-team-thumb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/img-team-thumb2.png -------------------------------------------------------------------------------- /nova/static/images/sample/img-team-thumb3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/img-team-thumb3.png -------------------------------------------------------------------------------- /nova/static/images/sample/img-team-thumb4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/img-team-thumb4.png -------------------------------------------------------------------------------- /nova/static/images/sample/img-testimonial-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/img-testimonial-1.png -------------------------------------------------------------------------------- /nova/static/images/sample/img-testimonial-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/img-testimonial-2.png -------------------------------------------------------------------------------- /nova/static/images/sample/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/img1.jpg -------------------------------------------------------------------------------- /nova/static/images/sample/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/img2.jpg -------------------------------------------------------------------------------- /nova/static/images/sample/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nova/static/images/sample/map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/map.jpg -------------------------------------------------------------------------------- /nova/static/images/sample/slider/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/slider/img1.png -------------------------------------------------------------------------------- /nova/static/images/sample/slider/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/slider/img2.png -------------------------------------------------------------------------------- /nova/static/images/sample/slider/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/slider/img3.png -------------------------------------------------------------------------------- /nova/static/images/sample/team1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/team1.jpg -------------------------------------------------------------------------------- /nova/static/images/sample/team2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/team2.jpg -------------------------------------------------------------------------------- /nova/static/images/sample/team3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/team3.jpg -------------------------------------------------------------------------------- /nova/static/images/sample/team4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/team4.jpg -------------------------------------------------------------------------------- /nova/static/images/sample/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/images/sample/test.jpg -------------------------------------------------------------------------------- /nova/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /nova/static/js/jquery.ba-cond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/js/jquery.ba-cond.min.js -------------------------------------------------------------------------------- /nova/static/js/jquery.slitslider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/js/jquery.slitslider.js -------------------------------------------------------------------------------- /nova/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/js/main.js -------------------------------------------------------------------------------- /nova/static/js/twitter-bootstrap-hover-dropdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/js/twitter-bootstrap-hover-dropdown.min.js -------------------------------------------------------------------------------- /nova/static/js/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/js/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /nova/static/js/vendor/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/js/vendor/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /nova/static/js/vendor/modernizr-2.6.2-respond-1.1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/static/js/vendor/modernizr-2.6.2-respond-1.1.0.min.js -------------------------------------------------------------------------------- /nova/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/base.html -------------------------------------------------------------------------------- /nova/templates/blog/blog_post_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/blog/blog_post_detail.html -------------------------------------------------------------------------------- /nova/templates/blog/blog_post_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/blog/blog_post_list.html -------------------------------------------------------------------------------- /nova/templates/blog/includes/filter_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/blog/includes/filter_panel.html -------------------------------------------------------------------------------- /nova/templates/generic/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/generic/comments.html -------------------------------------------------------------------------------- /nova/templates/generic/includes/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/generic/includes/comment.html -------------------------------------------------------------------------------- /nova/templates/generic/includes/comment_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/generic/includes/comment_form.html -------------------------------------------------------------------------------- /nova/templates/generic/includes/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/generic/includes/comments.html -------------------------------------------------------------------------------- /nova/templates/generic/includes/disqus_comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/generic/includes/disqus_comments.html -------------------------------------------------------------------------------- /nova/templates/generic/includes/disqus_counts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/generic/includes/disqus_counts.html -------------------------------------------------------------------------------- /nova/templates/generic/includes/disqus_sso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/generic/includes/disqus_sso.html -------------------------------------------------------------------------------- /nova/templates/generic/includes/rating.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/generic/includes/rating.html -------------------------------------------------------------------------------- /nova/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/index.html -------------------------------------------------------------------------------- /nova/templates/pages/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/pages/form.html -------------------------------------------------------------------------------- /nova/templates/pages/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/pages/gallery.html -------------------------------------------------------------------------------- /nova/templates/pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/pages/index.html -------------------------------------------------------------------------------- /nova/templates/pages/menus/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/pages/menus/admin.html -------------------------------------------------------------------------------- /nova/templates/pages/menus/breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/pages/menus/breadcrumb.html -------------------------------------------------------------------------------- /nova/templates/pages/menus/dropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/pages/menus/dropdown.html -------------------------------------------------------------------------------- /nova/templates/pages/menus/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/pages/menus/footer.html -------------------------------------------------------------------------------- /nova/templates/pages/menus/footer_tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/pages/menus/footer_tree.html -------------------------------------------------------------------------------- /nova/templates/pages/menus/mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/pages/menus/mobile.html -------------------------------------------------------------------------------- /nova/templates/pages/menus/primary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/pages/menus/primary.html -------------------------------------------------------------------------------- /nova/templates/pages/menus/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/pages/menus/tree.html -------------------------------------------------------------------------------- /nova/templates/pages/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/pages/page.html -------------------------------------------------------------------------------- /nova/templates/pages/richtextpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/pages/richtextpage.html -------------------------------------------------------------------------------- /nova/templates/search_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/search_results.html -------------------------------------------------------------------------------- /nova/templates/twitter/tweets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/templates/twitter/tweets.html -------------------------------------------------------------------------------- /nova/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/nova/tests.py -------------------------------------------------------------------------------- /nova/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Mezzanine==4.2.3 2 | -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/settings.py -------------------------------------------------------------------------------- /solid/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solid/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/admin.py -------------------------------------------------------------------------------- /solid/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/models.py -------------------------------------------------------------------------------- /solid/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/bootstrap.css -------------------------------------------------------------------------------- /solid/static/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/font-awesome.min.css -------------------------------------------------------------------------------- /solid/static/css/hoverex-all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/hoverex-all.css -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/dark_rounded/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/dark_rounded/btnNext.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/dark_rounded/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/dark_rounded/btnPrevious.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/dark_rounded/contentPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/dark_rounded/contentPattern.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/dark_rounded/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/dark_rounded/loader.gif -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/dark_rounded/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/dark_rounded/sprite.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/dark_square/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/dark_square/btnNext.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/dark_square/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/dark_square/btnPrevious.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/dark_square/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/dark_square/loader.gif -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/dark_square/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/dark_square/sprite.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/default/default_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/default/default_thumb.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/default/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/default/loader.gif -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/default/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/default/sprite.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/default/sprite_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/default/sprite_next.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/default/sprite_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/default/sprite_prev.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/default/sprite_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/default/sprite_x.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/default/sprite_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/default/sprite_y.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/facebook/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/facebook/btnNext.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/facebook/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/facebook/btnPrevious.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/facebook/contentPatternBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/facebook/contentPatternBottom.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/facebook/contentPatternLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/facebook/contentPatternLeft.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/facebook/contentPatternRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/facebook/contentPatternRight.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/facebook/contentPatternTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/facebook/contentPatternTop.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/facebook/default_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/facebook/default_thumbnail.gif -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/facebook/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/facebook/loader.gif -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/facebook/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/facebook/sprite.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/light_rounded/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/light_rounded/btnNext.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/light_rounded/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/light_rounded/btnPrevious.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/light_rounded/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/light_rounded/loader.gif -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/light_rounded/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/light_rounded/sprite.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/light_square/btnNext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/light_square/btnNext.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/light_square/btnPrevious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/light_square/btnPrevious.png -------------------------------------------------------------------------------- /solid/static/css/images/prettyPhoto/light_square/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/images/prettyPhoto/light_square/sprite.png -------------------------------------------------------------------------------- /solid/static/css/mezzanine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/mezzanine.css -------------------------------------------------------------------------------- /solid/static/css/prettyPhoto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/prettyPhoto.css -------------------------------------------------------------------------------- /solid/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/css/style.css -------------------------------------------------------------------------------- /solid/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /solid/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /solid/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /solid/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /solid/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /solid/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /solid/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /solid/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /solid/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /solid/static/img/agency.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/agency.jpg -------------------------------------------------------------------------------- /solid/static/img/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/browser.png -------------------------------------------------------------------------------- /solid/static/img/clients/client01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/clients/client01.png -------------------------------------------------------------------------------- /solid/static/img/clients/client02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/clients/client02.png -------------------------------------------------------------------------------- /solid/static/img/clients/client03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/clients/client03.png -------------------------------------------------------------------------------- /solid/static/img/clients/client04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/clients/client04.png -------------------------------------------------------------------------------- /solid/static/img/contact.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/contact.jpg -------------------------------------------------------------------------------- /solid/static/img/portfolio/portfolio_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/portfolio/portfolio_01.jpg -------------------------------------------------------------------------------- /solid/static/img/portfolio/portfolio_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/portfolio/portfolio_02.jpg -------------------------------------------------------------------------------- /solid/static/img/portfolio/portfolio_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/portfolio/portfolio_03.jpg -------------------------------------------------------------------------------- /solid/static/img/portfolio/portfolio_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/portfolio/portfolio_04.jpg -------------------------------------------------------------------------------- /solid/static/img/portfolio/portfolio_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/portfolio/portfolio_05.jpg -------------------------------------------------------------------------------- /solid/static/img/portfolio/portfolio_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/portfolio/portfolio_06.jpg -------------------------------------------------------------------------------- /solid/static/img/portfolio/portfolio_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/portfolio/portfolio_07.jpg -------------------------------------------------------------------------------- /solid/static/img/portfolio/portfolio_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/portfolio/portfolio_08.jpg -------------------------------------------------------------------------------- /solid/static/img/portfolio/portfolio_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/portfolio/portfolio_09.jpg -------------------------------------------------------------------------------- /solid/static/img/portfolio/portfolio_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/portfolio/portfolio_10.jpg -------------------------------------------------------------------------------- /solid/static/img/portfolio/single01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/portfolio/single01.jpg -------------------------------------------------------------------------------- /solid/static/img/portfolio/single02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/portfolio/single02.jpg -------------------------------------------------------------------------------- /solid/static/img/portfolio/single03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/portfolio/single03.jpg -------------------------------------------------------------------------------- /solid/static/img/post01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/post01.jpg -------------------------------------------------------------------------------- /solid/static/img/post02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/post02.jpg -------------------------------------------------------------------------------- /solid/static/img/post03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/post03.jpg -------------------------------------------------------------------------------- /solid/static/img/t-back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/t-back.jpg -------------------------------------------------------------------------------- /solid/static/img/team/team01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/team/team01.jpg -------------------------------------------------------------------------------- /solid/static/img/team/team02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/team/team02.jpg -------------------------------------------------------------------------------- /solid/static/img/team/team03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/team/team03.jpg -------------------------------------------------------------------------------- /solid/static/img/team/team04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/team/team04.jpg -------------------------------------------------------------------------------- /solid/static/img/thumb01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/thumb01.jpg -------------------------------------------------------------------------------- /solid/static/img/thumb02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/thumb02.jpg -------------------------------------------------------------------------------- /solid/static/img/thumb03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/thumb03.jpg -------------------------------------------------------------------------------- /solid/static/img/thumb04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/img/thumb04.jpg -------------------------------------------------------------------------------- /solid/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /solid/static/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/js/custom.js -------------------------------------------------------------------------------- /solid/static/js/jquery.hoverdir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/js/jquery.hoverdir.js -------------------------------------------------------------------------------- /solid/static/js/jquery.hoverex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/js/jquery.hoverex.min.js -------------------------------------------------------------------------------- /solid/static/js/jquery.isotope.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/js/jquery.isotope.min.js -------------------------------------------------------------------------------- /solid/static/js/jquery.prettyPhoto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/js/jquery.prettyPhoto.js -------------------------------------------------------------------------------- /solid/static/js/retina-1.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/static/js/retina-1.1.0.js -------------------------------------------------------------------------------- /solid/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/base.html -------------------------------------------------------------------------------- /solid/templates/blog/blog_post_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/blog/blog_post_detail.html -------------------------------------------------------------------------------- /solid/templates/blog/blog_post_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/blog/blog_post_list.html -------------------------------------------------------------------------------- /solid/templates/blog/includes/filter_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/blog/includes/filter_panel.html -------------------------------------------------------------------------------- /solid/templates/email/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/email/base.html -------------------------------------------------------------------------------- /solid/templates/email/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/email/base.txt -------------------------------------------------------------------------------- /solid/templates/email/comment_notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/email/comment_notification.html -------------------------------------------------------------------------------- /solid/templates/email/comment_notification.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/email/comment_notification.txt -------------------------------------------------------------------------------- /solid/templates/email/form_response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/email/form_response.html -------------------------------------------------------------------------------- /solid/templates/email/form_response.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/email/form_response.txt -------------------------------------------------------------------------------- /solid/templates/email/form_response_copies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/email/form_response_copies.html -------------------------------------------------------------------------------- /solid/templates/email/form_response_copies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/email/form_response_copies.txt -------------------------------------------------------------------------------- /solid/templates/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/errors/404.html -------------------------------------------------------------------------------- /solid/templates/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/errors/500.html -------------------------------------------------------------------------------- /solid/templates/generic/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/generic/comments.html -------------------------------------------------------------------------------- /solid/templates/generic/includes/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/generic/includes/comment.html -------------------------------------------------------------------------------- /solid/templates/generic/includes/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/generic/includes/comments.html -------------------------------------------------------------------------------- /solid/templates/generic/includes/disqus_comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/generic/includes/disqus_comments.html -------------------------------------------------------------------------------- /solid/templates/generic/includes/disqus_counts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/generic/includes/disqus_counts.html -------------------------------------------------------------------------------- /solid/templates/generic/includes/disqus_sso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/generic/includes/disqus_sso.html -------------------------------------------------------------------------------- /solid/templates/generic/includes/rating.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/generic/includes/rating.html -------------------------------------------------------------------------------- /solid/templates/includes/editable_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/includes/editable_form.html -------------------------------------------------------------------------------- /solid/templates/includes/editable_loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/includes/editable_loader.html -------------------------------------------------------------------------------- /solid/templates/includes/editable_toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/includes/editable_toolbar.html -------------------------------------------------------------------------------- /solid/templates/includes/footer_scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/includes/footer_scripts.html -------------------------------------------------------------------------------- /solid/templates/includes/footer_scripts.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/includes/footer_scripts.html~ -------------------------------------------------------------------------------- /solid/templates/includes/form_errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/includes/form_errors.html -------------------------------------------------------------------------------- /solid/templates/includes/form_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/includes/form_fields.html -------------------------------------------------------------------------------- /solid/templates/includes/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/includes/pagination.html -------------------------------------------------------------------------------- /solid/templates/includes/search_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/includes/search_form.html -------------------------------------------------------------------------------- /solid/templates/includes/user_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/includes/user_panel.html -------------------------------------------------------------------------------- /solid/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/index.html -------------------------------------------------------------------------------- /solid/templates/pages/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/pages/form.html -------------------------------------------------------------------------------- /solid/templates/pages/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/pages/gallery.html -------------------------------------------------------------------------------- /solid/templates/pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/pages/index.html -------------------------------------------------------------------------------- /solid/templates/pages/menus/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/pages/menus/admin.html -------------------------------------------------------------------------------- /solid/templates/pages/menus/breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/pages/menus/breadcrumb.html -------------------------------------------------------------------------------- /solid/templates/pages/menus/dropdown1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/pages/menus/dropdown1.html -------------------------------------------------------------------------------- /solid/templates/pages/menus/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/pages/menus/footer.html -------------------------------------------------------------------------------- /solid/templates/pages/menus/footer_tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/pages/menus/footer_tree.html -------------------------------------------------------------------------------- /solid/templates/pages/menus/mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/pages/menus/mobile.html -------------------------------------------------------------------------------- /solid/templates/pages/menus/primary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/pages/menus/primary.html -------------------------------------------------------------------------------- /solid/templates/pages/menus/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/pages/menus/tree.html -------------------------------------------------------------------------------- /solid/templates/pages/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/pages/page.html -------------------------------------------------------------------------------- /solid/templates/pages/richtextpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/pages/richtextpage.html -------------------------------------------------------------------------------- /solid/templates/search_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/search_results.html -------------------------------------------------------------------------------- /solid/templates/twitter/tweets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/templates/twitter/tweets.html -------------------------------------------------------------------------------- /solid/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/solid/tests.py -------------------------------------------------------------------------------- /solid/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/urls.py -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodinghouse/mezzanine-themes/HEAD/wsgi.py --------------------------------------------------------------------------------