aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes
diff options
context:
space:
mode:
Diffstat (limited to 'themes')
-rw-r--r--themes/baggy/config.twig4
-rwxr-xr-xthemes/baggy/css/messages.css19
-rw-r--r--themes/baggy/home.twig2
3 files changed, 24 insertions, 1 deletions
diff --git a/themes/baggy/config.twig b/themes/baggy/config.twig
index d0ec0ca7..598409b9 100644
--- a/themes/baggy/config.twig
+++ b/themes/baggy/config.twig
@@ -116,4 +116,8 @@
116 {% if constant('STORAGE') == 'sqlite' %} 116 {% if constant('STORAGE') == 'sqlite' %}
117 <p><a href="?download" target="_blank">{% trans "Click here" %}</a> {% trans "to download your database." %}</p>{% endif %} 117 <p><a href="?download" target="_blank">{% trans "Click here" %}</a> {% trans "to download your database." %}</p>{% endif %}
118 <p><a href="?export" target="_blank">{% trans "Click here" %}</a> {% trans "to export your wallabag data." %}</p> 118 <p><a href="?export" target="_blank">{% trans "Click here" %}</a> {% trans "to export your wallabag data." %}</p>
119
120 <h2>{% trans "Cache" %}</h2>
121 <p><a href="?empty-cache">{% trans "Click here" %}</a> {% trans "to delete cache." %}</p>
122
119{% endblock %} 123{% endblock %}
diff --git a/themes/baggy/css/messages.css b/themes/baggy/css/messages.css
index e69de29b..0cd89a9e 100755
--- a/themes/baggy/css/messages.css
+++ b/themes/baggy/css/messages.css
@@ -0,0 +1,19 @@
1.messages.error {
2 border: 1px solid #c42608;
3 color: #c00 !important;
4 background: #fff0ef;
5 text-align: left;
6}
7
8.messages.notice {
9 border: 1px solid #ebcd41;
10 color: #000;
11 background: #fffcd3;
12 text-align: left;
13}
14
15.messages.success {
16 border: 1px solid #6dc70c;
17 background: #e0fbcc;
18 text-align: left;
19} \ No newline at end of file
diff --git a/themes/baggy/home.twig b/themes/baggy/home.twig
index d58e53ce..33afdbbd 100644
--- a/themes/baggy/home.twig
+++ b/themes/baggy/home.twig
@@ -43,7 +43,7 @@
43 43
44 {% endfor %} 44 {% endfor %}
45 </div> 45 </div>
46 {% if view == 'home' %}{% if nb_results > 1 %}<a title="{% trans "Mark all the entries as read" %}" href="./?action=archive_all">{{ "Mark all the entries as read" }} {% trans "" %}</a>{% endif %}{% endif %} 46 {% if view == 'home' %}{% if nb_results > 1 %}<a title="{% trans "Mark all the entries as read" %}" href="./?action=archive_all">{{ "Mark all the entries as read" }}</a>{% endif %}{% endif %}
47 {% endif %} 47 {% endif %}
48 {{ block('pager') }} 48 {{ block('pager') }}
49{% endblock %} 49{% endblock %}