Small website changes.

This commit is contained in:
John "Elwin" Edwards 2020-01-27 18:11:53 -05:00
parent ae6a2d2ff5
commit 78181d5ac1
22 changed files with 55 additions and 55 deletions

View file

@ -6,7 +6,7 @@ import datetime
import rlgall
import pytz
navbar = '<div class="nav"><a href="/">rlgallery.org</a> -&gt; \
navbar = '<div class="nav"><a href="/">RLGallery</a> -&gt; \
<a href="/notes/">Notes</a> -&gt; {0}</div>'
rsshead = """<?xml version="1.0" encoding="UTF-8"?>
@ -14,7 +14,7 @@ rsshead = """<?xml version="1.0" encoding="UTF-8"?>
<channel>
<title>Roguelike Gallery</title>
<description>News and notes from the Roguelike Gallery.</description>
<link>http://rlgallery.org/notes/</link>
<link>https://rlgallery.org/notes/</link>
"""
indexintro = """<p>The Gallery's blog, with news and thoughts on roguelike
@ -31,7 +31,7 @@ posthead = '<h3 class="posttitle">{0}</h2>\n'
datediv = '<div class="datehead">{0}</div>\n'
def noteurl(tag):
return "http://rlgallery.org/notes/" + tag + ".html"
return "https://rlgallery.org/notes/" + tag + ".html"
def itementry(tagname, value):
return " <{0}>{1}</{0}>\n".format(tagname, value)