- commit
- 35bca602f3c051a084b1a07d3ec2e4ab329669fe
- parent
- 4694af42a0891ff0ace59854043f1c57d4909ae3
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2023-12-21 10:44
avoid redundant tab stops
Diffstat
| M | plutopluto/__init__.py | 2 | +- |
| M | plutopluto/index.html | 2 | +- |
2 files changed, 2 insertions, 2 deletions
diff --git a/plutopluto/__init__.py b/plutopluto/__init__.py
@@ -68,7 +68,7 @@ async def parse_feed(url): 68 68 if '<' not in d['content']: 69 69 d['content'] = linebreaks(d['content']) 70 70 if 'youtube' in url:71 -1 thumbnail = '<a href="{}"><img alt="" src="{}" /></a>'.format(-1 71 thumbnail = '<a href="{}" tabindex="-1"><img alt="" src="{}" /></a>'.format( 72 72 escape(d['link']), 73 73 escape(item['media_thumbnail'][0]['url']), 74 74 )
diff --git a/plutopluto/index.html b/plutopluto/index.html
@@ -15,7 +15,7 @@ 15 15 <header> 16 16 <a class="source u-bold" href="{{source_link}}">{{source}}</a> 17 17 <span class="meta">18 -1 · Posted on <a href="{{link}}">{{dt}}</a>-1 18 · Posted on <a href="{{link}}" tabindex="-1">{{dt}}</a> 19 19 </span> 20 20 </header> 21 21 <h1 class="title"><a href="{{link}}">{{title}}</a></h1>