2023-02-24 20:42:01 -05:00
<!--% PROCESS 'shared-episode-summary.tpl.html' %-->
<!--% PROCESS 'shared-utils.tpl.html' %-->
<!--% PROCESS 'shared-listen-now.tpl.html' %-->
2025-04-03 07:22:35 +01:00
<!--% PROCESS "queries-episode.tpl.html" %-->
<!--% USE DBI(constants.driver) %-->
2026-01-31 14:16:44 -05:00
<!--% page_title = "HPR ~ Current comments on the shows" %-->
2023-02-24 20:42:01 -05:00
< h2 > Comment Viewer</ h2 >
< p > Because of the spammers we have had to turn on comment moderation. Sorry about the delay this will cause.</ p >
< p >< a href = "<!--% absolute_path(baseurl) %-->comments.rss" > Subscribe</ a > to the comment feed.</ p >
2025-09-03 21:57:28 -04:00
< hr class = "no-css" >
< section id = "comments" class = "lane stack" >
2023-02-24 20:42:01 -05:00
<!--% FOREACH item IN DBI.query('
SELECT C.*,
H.host, H.hostid AS host_id,
E.title AS episode_title,
E.date AS episode_date,
E.duration AS episode_duration,
M.id AS series_id, M.name AS series_name
FROM comments AS C
INNER JOIN eps AS E
ON C.eps_id = E.id
INNER JOIN hosts AS H
ON E.hostid = H.hostid
INNER JOIN miniseries AS M
ON E.series = M.id
ORDER BY C.comment_timestamp DESC
LIMIT 30
')
%-->
< article >
2025-09-03 21:57:28 -04:00
< header >
< h2 > <!--% item.comment_author_name %--> says: <!--% item.comment_title %--> </ h2 >
</ header >
< p class = "show-meta" > Posted at <!--% item.comment_timestamp %--> relating to the show < a href = "<!--% absolute_path(baseurl) %-->eps/hpr<!--% zero_pad_left(item.eps_id) %-->/index.html" > hpr<!--% item.eps_id %--> </ a > which was released on <!--% item.episode_date %--> by < a href = "<!--% absolute_path(baseurl) %-->correspondents/<!--% zero_pad_left(item.host_id) %-->.html" > <!--% item.host %--> </ a > entitled < em > <!--% item.episode_title %--> </ em ></ small >
</ p >
< p class = "comment" >
<!--% item.comment_text FILTER html_line_break %-->
</ p >
< footer >
Listen in < a href = "<!--% media_path(item.eps_id, 'hpr', 'ogg', baseurl, media_baseurl) %-->" > ogg</ a > , < a href = "<!--% media_path(item.eps_id, 'hpr', 'spx', baseurl, media_baseurl) %-->" > spx</ a > , or < a href = "<!--% media_path(item.eps_id, 'hpr', 'mp3', baseurl, media_baseurl) %-->" > mp3</ a > format.</ p ></ footer >
2023-02-24 20:42:01 -05:00
</ article >
2025-09-03 21:57:28 -04:00
< hr class = "no-css" >
2023-02-24 20:42:01 -05:00
<!--% END %-->
2025-09-03 21:57:28 -04:00
</ section >