Mercurial > hg > rlgallery-misc
annotate py/rlgnotes @ 89:0c3e63de292c
Small updates to the About page.
| author | John "Elwin" Edwards |
|---|---|
| date | Fri, 06 Sep 2019 09:57:35 -0400 |
| parents | 5b4ff5680037 |
| children | d417016bbf73 |
| rev | line source |
|---|---|
| 61 | 1 #!/usr/bin/python3 |
| 2 | |
| 3 import os | |
| 4 import sys | |
| 5 import datetime | |
| 6 import rlgall | |
| 7 import pytz | |
| 8 | |
| 9 navbar = '<div class="nav"><a href="/">rlgallery.org</a> -> \ | |
| 10 <a href="/notes/">Notes</a> -> {0}</div>' | |
| 11 | |
| 12 rsshead = """<?xml version="1.0" encoding="UTF-8"?> | |
| 13 <rss version="2.0"> | |
| 14 <channel> | |
| 15 <title>Roguelike Gallery</title> | |
| 16 <description>News and notes from the Roguelike Gallery.</description> | |
| 17 <link>http://rlgallery.org/notes/</link> | |
| 18 """ | |
| 19 | |
