diff --git a/social_media_dribbble/README.rst b/social_media_dribbble/README.rst
new file mode 100644
index 000000000..9f7bdbe47
--- /dev/null
+++ b/social_media_dribbble/README.rst
@@ -0,0 +1,70 @@
+
+ .. image:: https://github.com/blooparksystems/website/blob/8.0/website_social_media_icon_extention/static/description/dribbble.png?raw=true
+ :width: 100
+ :target: https://dribbble.com
+
+Extend Social Media Links
+=========================
+
+.. image:: https://github.com/blooparksystems/website/blob/8.0/website_social_media_icon_extention/static/description/settings.png?raw=true
+ :width: 700
+
+.. image:: https://github.com/blooparksystems/website/blob/8.0/website_social_media_icon_extention/static/description/webpage.png?raw=true
+ :width: 700
+
+Currently added:
+
+- Dribbble
+
+Info:
+-----
+
+- By default, the icon will be shown on the footer, about us, and the Blog, like the original icons.
+
+Configuration
+-------------
+
+- go in the backend under settings / website
+- you can now also add your Dribbble Account
+
+Usage:
+------
+
+- normal social icons:
+
+
+
+
+
+
+
+
+
+
+
+
+
+- the new social icons:
+
+
+
+Credits
+=======
+
+Contributors
+------------
+
+* Benjamin Bachmann (benniphx@gmail.com)
+
+Maintainer
+----------
+
+.. image:: http://odoo-community.org/logo.png
+ :alt: Odoo Community Association
+ :target: http://odoo-community.org
+
+This module is maintained by the OCA.
+
+OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.
+
+To contribute to this module, please visit http://odoo-community.org.
\ No newline at end of file
diff --git a/social_media_dribbble/__init__.py b/social_media_dribbble/__init__.py
new file mode 100644
index 000000000..e7747f1aa
--- /dev/null
+++ b/social_media_dribbble/__init__.py
@@ -0,0 +1,21 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+# Odoo, an open source suite of business apps
+# This module copyright (C) 2015 bloopark systems ().
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see .
+#
+##############################################################################
+from . import models
diff --git a/social_media_dribbble/__openerp__.py b/social_media_dribbble/__openerp__.py
new file mode 100644
index 000000000..f1c869284
--- /dev/null
+++ b/social_media_dribbble/__openerp__.py
@@ -0,0 +1,44 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+# Odoo, an open source suite of business apps
+# This module copyright (C) 2015 bloopark systems ().
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see .
+#
+##############################################################################
+{
+ 'name': "Dribbble Social Media Icon Extension",
+ 'summary': """Dribbble Extension for the social media icons from the
+ odoo core""",
+ 'author': "bloopark systems GmbH & Co. KG, "
+ "Odoo Community Association (OCA)",
+ 'website': "http://www.bloopark.de",
+ 'license': 'AGPL-3',
+ 'category': 'Social Media',
+ 'version': '8.0.1.0.0',
+
+ 'depends': [
+ 'base',
+ 'website',
+ 'website_blog'
+ ],
+
+ 'data': [
+ 'views/website_templates.xml',
+ 'views/website_views.xml',
+ 'views/website_blog_template.xml',
+ 'views/res_config.xml',
+ ],
+}
diff --git a/social_media_dribbble/models/__init__.py b/social_media_dribbble/models/__init__.py
new file mode 100644
index 000000000..cf4d9e9d8
--- /dev/null
+++ b/social_media_dribbble/models/__init__.py
@@ -0,0 +1,22 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+# Odoo, an open source suite of business apps
+# This module copyright (C) 2015 bloopark systems ().
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see .
+#
+##############################################################################
+from . import res_config
+from . import website
diff --git a/social_media_dribbble/models/res_config.py b/social_media_dribbble/models/res_config.py
new file mode 100644
index 000000000..74a3a6a4f
--- /dev/null
+++ b/social_media_dribbble/models/res_config.py
@@ -0,0 +1,32 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+# Odoo, an open source suite of business apps
+# This module copyright (C) 2015 bloopark systems ().
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see .
+#
+##############################################################################
+from openerp.models import TransientModel
+from openerp import fields
+
+
+class WebsiteConfigSettings(TransientModel):
+
+ """Adds the fields for Social Media Icons."""
+
+ _inherit = 'website.config.settings'
+
+ social_dribbble = fields.Char('Dribbble Account',
+ related='website_id.social_dribbble')
diff --git a/social_media_dribbble/models/website.py b/social_media_dribbble/models/website.py
new file mode 100644
index 000000000..fa0227f8a
--- /dev/null
+++ b/social_media_dribbble/models/website.py
@@ -0,0 +1,31 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+# Odoo, an open source suite of business apps
+# This module copyright (C) 2015 bloopark systems ().
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see .
+#
+##############################################################################
+from openerp.models import Model
+from openerp import fields
+
+
+class Website(Model):
+
+ """Adds the fields for Social Media Icons."""
+
+ _inherit = 'website'
+
+ social_dribbble = fields.Char('Dribbble Account')
diff --git a/social_media_dribbble/static/description/blog.png b/social_media_dribbble/static/description/blog.png
new file mode 100644
index 000000000..8dd88f794
Binary files /dev/null and b/social_media_dribbble/static/description/blog.png differ
diff --git a/social_media_dribbble/static/description/dribbble.png b/social_media_dribbble/static/description/dribbble.png
new file mode 100644
index 000000000..2f9f99dbb
Binary files /dev/null and b/social_media_dribbble/static/description/dribbble.png differ
diff --git a/social_media_dribbble/static/description/icon.png b/social_media_dribbble/static/description/icon.png
new file mode 100644
index 000000000..3a0328b51
Binary files /dev/null and b/social_media_dribbble/static/description/icon.png differ
diff --git a/social_media_dribbble/static/description/index.html b/social_media_dribbble/static/description/index.html
new file mode 100644
index 000000000..760b476cc
--- /dev/null
+++ b/social_media_dribbble/static/description/index.html
@@ -0,0 +1,28 @@
+
+