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

@ -24,13 +24,13 @@ phead = """<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/
"""
ptop = """<body>
<h1>Yendor Guild</h1>
<h1>Roguelike Gallery Records</h1>
"""
navtop = '<div class="nav"><a href="/">rlgallery.org</a> -&gt; {0}</div>\n'
navscore = '<div class="nav"><a href="/">rlgallery.org</a> -&gt; \
navtop = '<div class="nav"><a href="/">RLGallery</a> -&gt; {0}</div>\n'
navscore = '<div class="nav"><a href="/">RLGallery</a> -&gt; \
<a href="/scoring/">Scores</a> -&gt; {0}</div>\n'
navplayer = '<div class="nav"><a href="/">rlgallery.org</a> -&gt; \
navplayer = '<div class="nav"><a href="/">RLGallery</a> -&gt; \
<a href="/scoring/">Scores</a> -&gt; <a href="/scoring/players/">Players</a> \
-&gt; {0}</div>'
@ -45,7 +45,7 @@ rcell = ' <span class="sdatar">{0}</span>\n'
hcell = ' <span class="shdata">{0}</span>\n'
tblend = '</div>\n'
pend = """<div class="foot">
<a href="/">rlgallery.org</a>
<a href="/">RLGallery</a>
<a href="/recent.cgi">Recent Games</a>
<a href="/scoring/high.cgi">High Scores</a>
<a href="/notes/">Notes</a>

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)