neddit

the frontend of the frontpage of the internet  https://neddit.ce9e.org
git clone https://git.ce9e.org/neddit.git

commit
2743b4e3878ac5907503887dcf19013671e8861a
parent
d3754117c41597322da3ef77c9c25447737b2873
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2021-12-31 09:45
only have one permalink per post in taborder

Diffstat

M templates/_post.html 4 ++--

1 files changed, 2 insertions, 2 deletions


diff --git a/templates/_post.html b/templates/_post.html

@@ -1,7 +1,7 @@
    1     1 <article>
    2     2 	<header>
    3     3 		<a class="u-bold" href="/r/{{ post.data.subreddit}}/">r/{{ post.data.subreddit }}</a>
    4    -1 		<span class="meta">&middot; Posted by <a href="/u/{{ post.data.author }}/">{{ post.data.author }}</a> <a href="{{ post.data.permalink }}">{{ post.data.created_utc|dt }}</a></span>
   -1     4 		<span class="meta">&middot; Posted by <a href="/u/{{ post.data.author }}/">{{ post.data.author }}</a> <a href="{{ post.data.permalink }}" tabindex="-1">{{ post.data.created_utc|dt }}</a></span>
    5     5 	</header>
    6     6 	{% if post.data.post_hint in ['link', 'rich:video'] %}
    7     7 		<a href="{{ post.data.url }}" target="_blank"><img class="thumbnail" src="{{ post.data.thumbnail }}" alt=""></a>
@@ -32,6 +32,6 @@
   32    32 	{% endif %}
   33    33 	<footer>
   34    34 		<span>{{ post.data.score|k }} Points</span>
   35    -1 		<a href="{{ post.data.permalink }}">{{ post.data.num_comments }} Comments</a>
   -1    35 		<a href="{{ post.data.permalink }}" tabindex="-1">{{ post.data.num_comments }} Comments</a>
   36    36 	</footer>
   37    37 </article>