2022-08-01 01:33:54 +00:00
<!-- % PROCESS 'shared - utils.tpl.html' % -->
2023-03-14 03:10:36 +00:00
<!-- % PROCESS 'shared - avatar.tpl.html' % -->
2022-06-29 04:48:50 +00:00
< article >
2022-08-08 00:05:39 +00:00
< h2 class = "title" > Correspondents< / h2 >
2023-09-03 15:51:03 +00:00
< p > For more information on how to become a Correspondent see our < a href = "<!--% absolute_url(baseurl) %-->about.html#so_you_want_to_record_a_podcast" > contribute< / a > < / center > page. To add a logo here, either email one to admin at hpr or setup your email on < a href = "https://en.gravatar.com/" > Gravatar< / a > . To protect your browsing privacy we gather the images every hour and serve them directly from HPR.< p / >
2022-07-13 02:59:08 +00:00
<!-- % USE DBI(constants.driver, constants.user, constants.password) % -->
2023-03-10 14:57:51 +00:00
<!-- % host_cnt = 0 % -->
2023-02-12 21:54:17 +00:00
< table class = "hosts" >
2022-06-29 04:48:50 +00:00
< th > Avatar< / th >
< th > Name & Host ID< / th >
2023-07-23 16:03:27 +00:00
< th > License< / th >
2022-06-29 04:48:50 +00:00
< th > Last Show< / th >
2022-07-13 02:59:08 +00:00
<!-- % FOREACH host IN DBI.query(
'select h.hostid, h.host, h.license, e.date,
2022-08-01 02:25:15 +00:00
h.local_image
2022-07-13 02:59:08 +00:00
from hosts as h
inner join (select hostid, max(date) as date from eps group by hostid) as e
2023-07-23 16:03:27 +00:00
on h.hostid = e.hostid
order by h.host'
2022-07-13 02:59:08 +00:00
) %-->
2023-02-12 21:54:17 +00:00
< tr height = "80" >
2023-03-14 03:10:36 +00:00
< td > <!-- % get_avatar(host.hostid, host.host, host_cnt > 8) % --> < / td >
2022-06-29 04:48:50 +00:00
2022-08-08 00:05:39 +00:00
< td > < strong > <!-- % host.host % --> < / strong > < br >
2022-06-29 04:48:50 +00:00
2022-08-08 00:04:20 +00:00
Host ID: < a href = "<!--% absolute_path(baseurl) %-->correspondents/<!--% zero_pad_left(host.hostid) %-->.html" > <!-- % host.hostid % --> < / a > < / td >
2022-07-13 02:59:08 +00:00
< td > <!-- % host.license % --> < / td >
< td > <!-- % host.date % --> < / td >
2023-03-10 14:57:51 +00:00
< / tr > <!-- % host_cnt = host_cnt + 1 % -->
2022-06-29 04:48:50 +00:00
<!-- % END % -->
2022-07-13 02:59:08 +00:00
< / table >
2023-09-03 15:51:03 +00:00
< p > < a href = "<!--% absolute_url(baseurl) %-->about.html#so_you_want_to_record_a_podcast" > Become a Correspondent< / a > < / p >
2022-06-29 04:48:50 +00:00
< / article >