forked from rho_n/hpr_generator
29 lines
998 B
HTML
29 lines
998 B
HTML
<!--% PROCESS 'shared-episode-summary.tpl.html' %-->
|
|
<article>
|
|
<header>
|
|
<h1>Complete Archive of Shows.</h1>
|
|
<p>
|
|
All this information is available to the public. Scrape if you wish but if we can format the data for you then we're happy to help.
|
|
</p>
|
|
</header>
|
|
<!--% USE DBI(constants.driver, constants.user, constants.password) %-->
|
|
<!--% FOREACH episodes IN DBI.query('
|
|
SELECT
|
|
eps.id,
|
|
CASE eps.explicit WHEN 1 THEN \'Explicit\' ELSE \'Clean\' END AS explicit ,
|
|
eps.date, eps.license, eps.title, eps.summary,
|
|
eps.duration, eps.notes, eps.tags,
|
|
hosts.hostid,
|
|
hosts.host, hosts.email, hosts.local_image,
|
|
miniseries.name AS series, miniseries.id AS seriesid
|
|
FROM eps
|
|
INNER JOIN hosts ON eps.hostid = hosts.hostid
|
|
INNER JOIN miniseries ON eps.series = miniseries.id
|
|
WHERE eps.date < date(\'now\', \'+1 days\')
|
|
ORDER BY date DESC
|
|
')
|
|
%-->
|
|
<!--% show_summary(episodes) %-->
|
|
<!--% END %-->
|
|
</article>
|