aboutsummaryrefslogtreecommitdiff
path: root/source/templates
diff options
context:
space:
mode:
Diffstat (limited to 'source/templates')
-rw-r--r--source/templates/base.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/templates/base.html b/source/templates/base.html
index 75776128..3eff5bfe 100644
--- a/source/templates/base.html
+++ b/source/templates/base.html
@@ -2,12 +2,12 @@
<!DOCTYPE html>
<html>
<head>
- %if nb_unread_articles is UNDEFINED:
+ %if header_text is UNDEFINED:
<title>pyAggr3g470r</title>
- %elif nb_unread_articles == 0:
+ %elif header_text == 0:
<title>pyAggr3g470r</title>
%else:
- <title>${nb_unread_articles} - pyAggr3g470r</title>
+ <title>${header_text} - pyAggr3g470r</title>
%endif
<link rel="stylesheet" type="text/css" href="/css/style.css" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
bgstack15