Compare commits
No commits in common. "18b03bad3a4e3cb7f24ccd3ed7a1f8f5de8b7c57" and "164126ddf1729354ec72e2da7ef8d77ee31fc485" have entirely different histories.
18b03bad3a
...
164126ddf1
@ -152,10 +152,6 @@ if not os.path.exists(plugins_dir):
|
||||
if not os.path.exists("linklist"):
|
||||
errorpage("File \"linklist\" does not exist!")
|
||||
|
||||
if not os.path.exists(os.path.join(entries_dir, 'tags')):
|
||||
tagfile = open(os.path.join(entries_dir, "tags"), "w")
|
||||
tagfile.close()
|
||||
|
||||
if language == "de":
|
||||
blog_locale = (
|
||||
"Seiten",
|
||||
@ -457,7 +453,6 @@ else:
|
||||
document_header("html")
|
||||
print(ind + "<head>")
|
||||
print(ind*2 + "<title>%s</title>" % blog_title)
|
||||
print(ind*2 + "<base href=\"%s\" />" % blog_url)
|
||||
print(ind*2 + "<meta charset=\"utf-8\" />")
|
||||
print(ind*2 + "<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\" />")
|
||||
print(ind*2 + "<meta name=\"keywords\" content=\"%s\" />" % keywords)
|
||||
@ -681,7 +676,7 @@ else:
|
||||
for tag in tagline_items:
|
||||
tagline += "<a href=\"%s?t=%s\">%s</a> " % (blog_url, tag, tag)
|
||||
if tags == "True":
|
||||
print(ind*4 + "<div class=\"tags\"><b>%s:</b> %s</div>" % (blog_locale[11], tagline))
|
||||
print(ind*4 + "<div class=\"tags\"><b>Tags:</b> %s</div>" % tagline)
|
||||
else:
|
||||
content.seek(0)
|
||||
|
||||
|
@ -19,8 +19,6 @@ permalinks: True
|
||||
comments: True
|
||||
newest_first: True
|
||||
tags: True
|
||||
taglist: True
|
||||
tags_max: 10
|
||||
|
||||
[smtp]
|
||||
new_comment_mail: False
|
||||
|
Loading…
Reference in New Issue
Block a user