├── .coveragerc ├── .gitignore ├── .travis.yml ├── CONTRIBUTORS.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── changelog.rst ├── conf.py ├── facebook_widgets.rst ├── google_widgets.rst ├── index.rst ├── instagram_widgets.rst ├── pinterest_widgets.rst ├── quickstart.rst ├── twitter_widgets.rst └── usage.rst ├── example_project ├── __init__.py ├── example │ ├── __init__.py │ ├── models.py │ ├── static │ │ └── example │ │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ └── main.css │ │ │ └── js │ │ │ ├── ZeroClipboard.min.js │ │ │ ├── ZeroClipboard.swf │ │ │ └── main.js │ ├── templates │ │ └── index.html │ └── urls.py ├── manage.py ├── settings.py └── urls.py ├── runtests.py ├── setup.py ├── social_widgets ├── __init__.py ├── models.py ├── templates │ └── social_widgets │ │ ├── facebook │ │ ├── _base.html │ │ ├── activity_feed.html │ │ ├── embedded_post.html │ │ ├── follow_button.html │ │ ├── likebox.html │ │ ├── recommendations_feed.html │ │ └── share_button.html │ │ ├── google │ │ ├── _base.html │ │ ├── plus_community_badge.html │ │ ├── plus_follow_button.html │ │ ├── plus_page_badge.html │ │ ├── plus_person_badge.html │ │ ├── plus_share_button.html │ │ └── youtube_subscribe_button.html │ │ ├── instagram │ │ └── badge.html │ │ ├── pinterest │ │ ├── _base.html │ │ ├── board_widget.html │ │ ├── follow_button.html │ │ ├── pin_widget.html │ │ └── profile_widget.html │ │ └── twitter │ │ ├── _base.html │ │ ├── follow_button.html │ │ └── share_button.html ├── templatetags │ ├── __init__.py │ └── social_widgets.py └── tests.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/CONTRIBUTORS.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/facebook_widgets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/docs/facebook_widgets.rst -------------------------------------------------------------------------------- /docs/google_widgets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/docs/google_widgets.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/instagram_widgets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/docs/instagram_widgets.rst -------------------------------------------------------------------------------- /docs/pinterest_widgets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/docs/pinterest_widgets.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/twitter_widgets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/docs/twitter_widgets.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /example_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/example/models.py: -------------------------------------------------------------------------------- 1 | __author__ = 'alexparinov' 2 | -------------------------------------------------------------------------------- /example_project/example/static/example/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/example_project/example/static/example/css/bootstrap.css -------------------------------------------------------------------------------- /example_project/example/static/example/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/example_project/example/static/example/css/main.css -------------------------------------------------------------------------------- /example_project/example/static/example/js/ZeroClipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/example_project/example/static/example/js/ZeroClipboard.min.js -------------------------------------------------------------------------------- /example_project/example/static/example/js/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/example_project/example/static/example/js/ZeroClipboard.swf -------------------------------------------------------------------------------- /example_project/example/static/example/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/example_project/example/static/example/js/main.js -------------------------------------------------------------------------------- /example_project/example/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/example_project/example/templates/index.html -------------------------------------------------------------------------------- /example_project/example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/example_project/example/urls.py -------------------------------------------------------------------------------- /example_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/example_project/manage.py -------------------------------------------------------------------------------- /example_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/example_project/settings.py -------------------------------------------------------------------------------- /example_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/example_project/urls.py -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/setup.py -------------------------------------------------------------------------------- /social_widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /social_widgets/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/facebook/_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/facebook/_base.html -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/facebook/activity_feed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/facebook/activity_feed.html -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/facebook/embedded_post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/facebook/embedded_post.html -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/facebook/follow_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/facebook/follow_button.html -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/facebook/likebox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/facebook/likebox.html -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/facebook/recommendations_feed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/facebook/recommendations_feed.html -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/facebook/share_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/facebook/share_button.html -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/google/_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/google/_base.html -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/google/plus_community_badge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/google/plus_community_badge.html -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/google/plus_follow_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/google/plus_follow_button.html -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/google/plus_page_badge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/google/plus_page_badge.html -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/google/plus_person_badge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/google/plus_person_badge.html -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/google/plus_share_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/google/plus_share_button.html -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/google/youtube_subscribe_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/google/youtube_subscribe_button.html -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/instagram/badge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/instagram/badge.html -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/pinterest/_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/pinterest/_base.html -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/pinterest/board_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/pinterest/board_widget.html -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/pinterest/follow_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/pinterest/follow_button.html -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/pinterest/pin_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/pinterest/pin_widget.html -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/pinterest/profile_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/pinterest/profile_widget.html -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/twitter/_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/twitter/_base.html -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/twitter/follow_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/twitter/follow_button.html -------------------------------------------------------------------------------- /social_widgets/templates/social_widgets/twitter/share_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templates/social_widgets/twitter/share_button.html -------------------------------------------------------------------------------- /social_widgets/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /social_widgets/templatetags/social_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/templatetags/social_widgets.py -------------------------------------------------------------------------------- /social_widgets/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/social_widgets/tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creafz/django-social-widgets/HEAD/tox.ini --------------------------------------------------------------------------------