From c8b4ef7fed01c4d94ac9d2325bd2c6e97f831bad Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Wed, 19 Nov 2014 16:27:56 +0100 Subject: implementing carrot into wallabag --- themes/courgette/_view.twig | 1 + 1 file changed, 1 insertion(+) (limited to 'themes/courgette/_view.twig') diff --git a/themes/courgette/_view.twig b/themes/courgette/_view.twig index c5c916c0..129a622f 100755 --- a/themes/courgette/_view.twig +++ b/themes/courgette/_view.twig @@ -12,6 +12,7 @@ {% if constant('SHARE_MAIL') == 1 %}
  • {% endif %} {% if constant('SHARE_SHAARLI') == 1 %}
  • {% trans "shaarli" %}
  • {% 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 %}
  • EPUB
  • {% trans "this article appears wrong?" %}
  • -- cgit v1.2.3 From b13376e918aa157be5c0dfd53a655cc5d387f522 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Wed, 19 Nov 2014 16:35:44 +0100 Subject: fix Flattrs --- themes/courgette/_view.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'themes/courgette/_view.twig') diff --git a/themes/courgette/_view.twig b/themes/courgette/_view.twig index c5c916c0..bae278f3 100755 --- a/themes/courgette/_view.twig +++ b/themes/courgette/_view.twig @@ -11,7 +11,7 @@ {% if constant('SHARE_TWITTER') == 1 %}
  • {% endif %} {% if constant('SHARE_MAIL') == 1 %}
  • {% endif %} {% if constant('SHARE_SHAARLI') == 1 %}
  • {% trans "shaarli" %}
  • {% 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('FLATTR') == 1 %}{% if flattr.status == constant('FLATTRABLE') %}
  • {% trans "flattr" %}
  • {% elseif flattr.status == constant('FLATTRED') %}
  • {% trans "flattr" %}{{ flattr.numFlattrs }}
  • {% endif %}{% endif %}
  • EPUB
  • {% trans "this article appears wrong?" %}
  • -- cgit v1.2.3 From 85c5a1ff8d919d3d36a8125c9bbd0d9220025729 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Mon, 24 Nov 2014 13:11:57 +0100 Subject: failover if theme folder doesn't exist --- themes/courgette/_view.twig | 47 --------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100755 themes/courgette/_view.twig (limited to 'themes/courgette/_view.twig') diff --git a/themes/courgette/_view.twig b/themes/courgette/_view.twig deleted file mode 100755 index 5234f766..00000000 --- a/themes/courgette/_view.twig +++ /dev/null @@ -1,47 +0,0 @@ -{% extends "layout.twig" %} -{% block title %}{{ entry.title|raw }} ({{ entry.url | e | getDomain }}){% endblock %} -{% block content %} -
    - -
    -
    -
    -

    {{ entry.title|raw }}

    -
    -
    - {{ content | raw }} -
    -
    - - -{% endblock %} \ No newline at end of file -- cgit v1.2.3