diff --git a/inc/poche/config.inc.default.php b/inc/poche/config.inc.default.php
index aaaf12a66..91b50c244 100755
--- a/inc/poche/config.inc.default.php
+++ b/inc/poche/config.inc.default.php
@@ -44,6 +44,7 @@
@define ('SHARE_MAIL', TRUE);
@define ('SHARE_SHAARLI', FALSE);
@define ('SHAARLI_URL', 'http://myshaarliurl.com');
+@define ('SHARE_EVERNOTE', FALSE);
@define ('SHARE_DIASPORA', FALSE);
@define ('DIASPORA_URL', 'http://diasporapod.com'); # Don't add a / at the end
@define ('FLATTR', TRUE);
diff --git a/themes/baggy/view.twig b/themes/baggy/view.twig
index 0a8380ded..473e36958 100755
--- a/themes/baggy/view.twig
+++ b/themes/baggy/view.twig
@@ -15,6 +15,7 @@
{% if constant('SHARE_TWITTER') == 1 %}
{% endif %}
{% if constant('SHARE_MAIL') == 1 %}{% trans "Email" %}{% endif %}
{% if constant('SHARE_SHAARLI') == 1 %}{% trans "shaarli" %}{% endif %}
+ {% if constant('SHARE_EVERNOTE') == 1 %}{% trans "evernote" %}{% endif %}
{% if constant('SHARE_DIASPORA') == 1 %}{% trans "diaspora" %}{% endif %}
{% if constant('FLATTR') == 1 %}{% if flattr.status == constant('FLATTRABLE') %}{% trans "flattr" %}{% elseif flattr.status == constant('FLATTRED') %}{% trans "flattr" %} ({{ flattr.numFlattrs }}){% endif %}{% endif %}
{% if constant('CARROT') == 1 %}Carrot{% endif %}
diff --git a/themes/default/view.twig b/themes/default/view.twig
index be8bf99e6..87371d131 100755
--- a/themes/default/view.twig
+++ b/themes/default/view.twig
@@ -14,6 +14,7 @@
{% if constant('SHARE_TWITTER') == 1 %}{% endif %}
{% if constant('SHARE_MAIL') == 1 %}{% trans "Email" %}{% endif %}
{% if constant('SHARE_SHAARLI') == 1 %}{% trans "shaarli" %}{% endif %}
+ {% if constant('SHARE_EVERNOTE') == 1 %}{% trans "evernote" %}{% endif %}
{% if constant('SHARE_DIASPORA') == 1 %}{% trans "diaspora" %}{% endif %}
{% if constant('FLATTR') == 1 %}{% if flattr.status == constant('FLATTRABLE') %}{% trans "flattr" %}{% elseif flattr.status == constant('FLATTRED') %}{% trans "flattr" %}{{ flattr.numFlattrs }}{% endif %}{% endif %}
{% if constant('CARROT') == 1 %}{% trans "carrot" %}{% endif %}