heartranked

git clone https://git.tarina.org/heartranked
Log | Files | Refs | README

commit 77a06b18dea772d4ef7f96d42a6980fad906f161
parent a2d434dee3099670d075d1338cfd2efbfee3e1f2
Author: rbckman <rob@tarina.org>
Date:   Tue, 25 Aug 2026 02:15:36 +0300

GMT and muy importante comboposts div

Diffstat:
Mhtml/heartranked.html | 3+--
Mserver.py | 4+++-
2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/html/heartranked.html b/html/heartranked.html @@ -175,8 +175,7 @@ $else: $ choose_feed = False $for c in comboposts: $if c['postid'] and choose_feed == False: - $#<small><a href="/?show=$g['postid']&feedbase=timebased">timebased 🌍</a> <a href="/?show=$g['postid']&feedbase=heart1day">heartbased ❤️ day</a> <a href="/?show=$g['postid']&feedbase=heart1week">week</a> <a href="/?show=$g['postid']&feedbase=heart1month">month</a> <a href="/?show=$g['postid']&feedbase=heart1year">year</a> <a href="/?show=$g['postid']&feedbase=alltime">alltime</a></small> - <small>🌍 <a href="/?show=$g['postid']&feedbase=time">time</a> ❤️ <a href="/?show=$g['postid']&feedbase=heart">heart</a> ⚭ <a href="/?show=$g['postid']&feedbase=combo">combo</a> for <a href="/?show=$g['postid']&feedbase=today">day</a> <a href="/?show=$g['postid']&timebase=week">week</a> <a href="/?show=$g['postid']&timebase=month">month</a> <a href="/?show=$g['postid']&timebase=year">year</a> <a href="/?show=$g['postid']&timebase=all">all</a></small> + <small>🌍 <a href="/?show=$g['postid']&feedbase=time#comboposts">time</a> ❤️ <a href="/?show=$g['postid']&feedbase=heart#comboposts">heart</a> ⚭ <a href="/?show=$g['postid']&feedbase=combo#comboposts">combo</a> for <a href="/?show=$g['postid']&feedbase=today#comboposts">day</a> <a href="/?show=$g['postid']&timebase=week#comboposts">week</a> <a href="/?show=$g['postid']&timebase=month#comboposts">month</a> <a href="/?show=$g['postid']&timebase=year#comboposts">year</a> <a href="/?show=$g['postid']&timebase=all#comboposts">all</a></small> $ choose_feed = True <div class="post" id="$c['soundname']"> <br> diff --git a/server.py b/server.py @@ -1053,7 +1053,9 @@ def pushcombines(postid): return '' def formattime(timeadded): - return timeadded.strftime(datetimeformat) + current_time = time.gmtime() + str_time = time.strftime(datetimeformat, current_time) + return str_time def sort_by_name_then_time(path): sortedposts=[]