diff options
Diffstat (limited to 'mkfeed.py')
-rwxr-xr-x | mkfeed.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -42,7 +42,7 @@ with open(OUTDIR + 'index.html', 'w') as f: f.write(f'<h2>{escape(DIRNAME.title())} <a href="{escape(DIR)}atom.xml" style="vertical-align:top">{FEED_SVG}</a></h2>') f.write('<ul class="mkfeed-list">') for post in posts: - f.write(f"<li><a href=\"{post['path']}\">{post.get('date')} {post['title']}</a></li>") + f.write(f"<li>{post.get('date')}: <a href=\"{post['path']}\">{post['title']}</a></li>") f.write('</ul>') with open(OUTDIR + 'atom.xml', 'w') as f: |