2022-08-07 14:09:44 -04:00
<!--% PROCESS 'shared-episode-summary.tpl.html' %-->
<!--% PROCESS 'shared-avatar.tpl.html' %-->
<!--% PROCESS 'shared-utils.tpl.html' %-->
2022-09-18 16:23:35 -04:00
<!--% PROCESS 'shared-listen-now.tpl.html' %-->
2023-02-24 18:58:56 -05:00
<!--% PROCESS 'shared-show-transcript.tpl.html' %-->
2025-04-03 07:22:35 +01:00
<!--% PROCESS "queries-episode.tpl.html" %-->
2022-08-07 14:09:44 -04:00
<!--% USE DBI(constants.driver, constants.user, constants.password) %-->
2023-07-23 17:03:27 +01:00
<!--% query_episodes = DBI.prepare(query_episode_maxmin) %-->
2022-08-07 14:09:44 -04:00
<!--% episode_result = query_episodes.execute(id, id, id, id, id) %-->
<!--% FOREACH episode IN episode_result %-->
2023-07-23 17:03:27 +01:00
<!--% in_window = ( episode.id > episode.latest || episode.id < ( episode.latest - 20 ) ? 0 : 1 ) %-->
2022-08-31 20:44:31 -04:00
<!--% episode_navigation = step_navigation(baseurl,episode) %-->
2022-08-07 14:09:44 -04:00
< article >
< header >
2023-07-23 17:03:27 +01:00
< h1 > hpr<!--% zero_pad_left(episode.id) %--> :: <!--% episode.title %--> </ h1 >
2022-08-07 14:09:44 -04:00
< h3 > <!--% episode.summary %--> </ h3 >
2022-08-31 20:44:31 -04:00
< p class = "meta" > <!--% episode_navigation %-->
2022-08-07 14:26:05 -04:00
</ p >
2023-03-13 23:15:46 -04:00
< p > <!--% show_avatar(episode.hostid, episode.host) %-->
2024-10-27 13:04:19 -04:00
Hosted by < a href = "<!--% absolute_path(baseurl) %-->correspondents/<!--% zero_pad_left(episode.hostid) %-->.html" > <!--% episode.host %--> </ a > on < span > <!--% day_and_date(episode.date) %--> </ span > is flagged as < span > <!--% display_explicit(episode.explicit) %--> </ span > and is released under a < span > <!--% episode.license %--> license</ span > . < br >
2023-09-28 23:16:04 +01:00
<!--% display_tags(episode.tags) %-->
2023-04-02 08:50:04 -04:00
< label > Comments: </ label > <!--% display_comments_tally(episode.id, episode.eps_tally) %--> < br >
2023-03-31 14:02:49 +02:00
<!--% listen_now(episode, "hpr", baseurl, media_baseurl) %-->
2022-09-02 18:23:50 -04:00
</ p >
< h3 > <!--% show_series(episode.series, episode.seriesid, "Part of the series") %--> </ h3 >
< p >< em > <!--% episode.series_description %--> </ em ></ p >
2022-08-07 14:09:44 -04:00
</ header >
< div > <!--% episode.notes %--> </ div >
2022-09-02 18:23:50 -04:00
< footer >
< p >
<!--% episode_navigation %-->
</ p >
</ footer ></ article >
2022-08-07 14:09:44 -04:00
<!--% END %-->
2022-08-31 20:44:31 -04:00
< hr />
< h1 > Comments</ h1 >
< p id = "comments" >
2022-10-09 15:45:22 -04:00
Subscribe to the comments < a href = "<!--% absolute_path(baseurl) %-->comments.rss" > RSS</ a > feed.
2022-08-31 20:44:31 -04:00
</ p >
<!--% query_comments = DBI.prepare('
SELECT
2022-10-08 08:52:47 -04:00
id,
2022-08-31 20:44:31 -04:00
comment_timestamp,
comment_author_name,
comment_title,
comment_text
FROM comments
WHERE eps_id = ?
')
%-->
<!--% comment_index = 1 %-->
<!--% comments_result = query_comments.execute(id) %-->
<!--% FOREACH comment IN comments_result %-->
2024-06-04 12:50:23 -07:00
< h5 id = "comment_<!--% comment.id %-->" >< a href = "/eps/hpr<!--% zero_pad_left(episode.id) %-->/index.html#comment_<!--% comment.id %-->" > Comment #<!--% comment_index %--> </ a > posted on <!--% comment.comment_timestamp %--> by <!--% comment.comment_author_name %--> </ h5 >
2022-08-31 20:44:31 -04:00
< h4 > <!--% comment.comment_title %--> </ h4 >
2024-09-29 20:10:20 -04:00
< p class = "comment" > <!--% comment.comment_text FILTER html_line_break %--> </ p >
<!--% comment_index = comment_index + 1 %-->
2022-08-31 20:44:31 -04:00
<!--% END %-->
< h2 > Leave Comment</ h2 >
< p >
< strong > Note to Verbose Commenters</ strong >< br />
2023-09-03 17:51:03 +02:00
If you can't fit everything you want to say in the comment below then you really should < a href = "<!--% absolute_url(baseurl) %-->about.html#so_you_want_to_record_a_podcast" > record</ a > a response show instead.
2022-08-31 20:44:31 -04:00
</ p >
< p >
< strong > Note to Spammers</ strong >< br />
2023-09-03 17:51:03 +02:00
All comments are moderated. All links are checked by humans. We strip out all html. Feel free to < a href = "<!--% absolute_url(baseurl) %-->about.html#so_you_want_to_record_a_podcast" > record</ a > a show about yourself, or your industry, or any other topic we may find interesting. < em > We also check shows for spam :)</ em > .
2022-08-31 20:44:31 -04:00
</ p >
2023-06-17 22:04:35 +02:00
< form method = "POST" action = "<!--% hub_baseurl %-->comment_confirm.php" >
2022-08-31 20:44:31 -04:00
< fieldset >
< legend > Provide feedback</ legend >
< table >
< tr >
< td > Your Name/Handle:</ td >
< td >< input required type = "text" name = "comment_author_name" size = "40" maxlength = "40" placeholder = "Enter your name" ></ td >
</ tr >
< tr >
< td > Title:</ td >
2023-07-23 17:03:27 +01:00
< td >< input required type = "text" name = "comment_title" size = "50" maxlength = "100" placeholder = "What is your comment about?" ></ td >
2022-08-31 20:44:31 -04:00
</ tr >
< tr >
< td > Comment:</ td >
< td >< textarea required name = "comment_text" maxlength = "2000" rows = "10" cols = "50" placeholder = "Place the comment here." ></ textarea ></ td >
</ tr >
< tr >
< td > Anti Spam Question:</ td >
< td >
2023-07-31 15:27:17 +01:00
What does the letter < strong > P</ strong > in < em > HPR</ em > stand for? < br />
2022-08-31 20:44:31 -04:00
< input required type = "text" name = "anti_spam_question" size = "50" maxlength = "100" placeholder = "Type out what the P in HPR stands for." ></ td >
2023-07-23 17:03:27 +01:00
</ tr >
<!--% IF in_window %-->
< tr >< td >
2022-08-31 20:44:31 -04:00
< input type = "hidden" name = "spammer" value = "No" >
2023-06-17 22:04:35 +02:00
< input type = "hidden" name = "hostid" value = "<!--% episode.hostid %-->" >
< input type = "hidden" name = "justification" value = "No justification is asked for or required." >
2023-07-23 17:03:27 +01:00
</ td ></ tr >
<!--% ELSE %-->
<!-- . -->
< tr >
< td > Are you a spammer?</ td >
< td >
< input required checked = "checked" type = "radio" name = "spammer" id = "spammer_yes" value = "Yes" >
< label for = "spammer_yes" > Yes</ label >
< input required type = "radio" name = "spammer" id = "spammer_no" value = "No" >
< label for = "spammer_no" > No</ label >
</ td >
</ tr >
<!-- . -->
< tr >
2024-07-17 19:21:05 +00:00
< td > Who is the < strong > host</ strong > of this show?</ td >
2023-07-23 17:03:27 +01:00
< td >
2024-07-17 19:21:05 +00:00
< select required name = "hostid" id = "hostid" >
< option value = "Spammer" selected = "selected" > Spammer</ option >
< option value = "Spammer" > Linus Torvalds</ option >
< option value = "Spammer" > Marie Curie</ option >
< option value = "<!--% episode.hostid %-->" > <!--% episode.host %--> </ option >
< option value = "Spammer" > Alan Turing</ option >
< option value = "Spammer" > Terry Pratchett</ option >
< option value = "Spammer" > Yuri Gagarin</ option >
</ select >
< td >
2023-07-23 17:03:27 +01:00
< td >
<!-- . -->
< tr >
< td > What does HPR mean to you?</ td >
< td >< textarea required name = "justification" maxlength = "200" rows = "4" cols = "50" placeholder = "Convince us you are part of the community." ></ textarea ></ td >
</ tr >
<!--% END %-->
< tr >< td >
2023-06-17 22:04:35 +02:00
< input type = "hidden" name = "eps_id" value = "<!--% episode.id %-->" >
2023-07-23 17:03:27 +01:00
</ td ></ tr >
2022-08-31 20:44:31 -04:00
</ table >
< input type = "submit" value = "Next" >
</ fieldset >
</ form >