Fixes to "step navigation", etc
public_html/css/hpr.css: Commented out the 'font-size: 75%;' in the CSS definition for '#maincontent footer p'. It was this that shrank the lower "step navigation" list in comparison to the upper one. The upper is in a '<header>' block and the lower in a '<footer>' block. templates/content-episode.tpl.html: Fixed a typo. templates/content-theme.tpl.html: Changed "This can be added" to "This is automatically added" templates/queries-episode-sqlite.tpl.html: Fixed a transcription error from the 'mysql' version templates/shared-utils.tpl.html: Modified the layout of the 'step_navigation' macro to remove tabs which are being copied to the HTML. Just a minor cosmetic issue. Added a Vim modeline to the file to help with this.
This commit is contained in:
parent
d7d94b1ba7
commit
31fed34212
@ -198,7 +198,7 @@ h1.showtitle { font-size: 125%;}
|
|||||||
|
|
||||||
p.author { font-size: 85%;}
|
p.author { font-size: 85%;}
|
||||||
p.shownotes { padding: .5em;}
|
p.shownotes { padding: .5em;}
|
||||||
#maincontent footer p { font-size: 75%; margin-bottom: 1em;}
|
#maincontent footer p { /* font-size: 75%; */ margin-bottom: 1em;}
|
||||||
/* link styling */
|
/* link styling */
|
||||||
a:link {text-decoration: none;}
|
a:link {text-decoration: none;}
|
||||||
|
|
||||||
|
@ -87,7 +87,7 @@ Subscribe to the comments <a href="<!--% absolute_path(baseurl) %-->comments.rss
|
|||||||
<tr>
|
<tr>
|
||||||
<td>Anti Spam Question:</td>
|
<td>Anti Spam Question:</td>
|
||||||
<td>
|
<td>
|
||||||
What does the letter<strong>P</strong> in <em>HPR</em> stand for? <br />
|
What does the letter <strong>P</strong> in <em>HPR</em> stand for? <br />
|
||||||
<input required type="text" name="anti_spam_question" size="50" maxlength="100" placeholder="Type out what the P in HPR stands for."></td>
|
<input required type="text" name="anti_spam_question" size="50" maxlength="100" placeholder="Type out what the P in HPR stands for."></td>
|
||||||
</tr>
|
</tr>
|
||||||
<!--% IF in_window %-->
|
<!--% IF in_window %-->
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
<li>
|
<li>
|
||||||
<h3 id="outro">HPR Outro Music </h3>
|
<h3 id="outro">HPR Outro Music </h3>
|
||||||
<p>
|
<p>
|
||||||
This can be added is automatically added after you upload your show.
|
This is automatically added after you upload your show.
|
||||||
</p>
|
</p>
|
||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
FROM eps
|
FROM eps
|
||||||
INNER JOIN episode_date
|
INNER JOIN episode_date
|
||||||
ON eps.date > episode_date.date
|
ON eps.date > episode_date.date
|
||||||
WHERE eps.date < date(\'now\')
|
WHERE eps.date <= date(\'now\')
|
||||||
),
|
),
|
||||||
comment_tallies AS (
|
comment_tallies AS (
|
||||||
SELECT
|
SELECT
|
||||||
|
@ -80,16 +80,20 @@
|
|||||||
<!--% IF folder %-->
|
<!--% IF folder %-->
|
||||||
<!--% folder = folder %--><!--% ELSE %--><!--% folder = "hpr" %-->
|
<!--% folder = folder %--><!--% ELSE %--><!--% folder = "hpr" %-->
|
||||||
<!--% END %-->
|
<!--% END %-->
|
||||||
<small><a href="<!--% absolute_path(baseurl) %-->eps/<!--% folder %--><!--% zero_pad_left(links.earliest) %-->/index.html" rel="first"><< First</a>,
|
<small><a href="<!--% absolute_path(baseurl) %-->eps/<!--% folder %--><!--% zero_pad_left(links.earliest) %-->/index.html" rel="first"><< First</a>,
|
||||||
<!--% IF links.previous %-->
|
<!--% IF links.previous %-->
|
||||||
<a href="<!--% absolute_path(baseurl) %-->eps/<!--% folder %--><!--% zero_pad_left(links.previous) %-->/index.html" rel="previous">< Previous</a>,
|
<a href="<!--% absolute_path(baseurl) %-->eps/<!--% folder %--><!--% zero_pad_left(links.previous) %-->/index.html" rel="previous">< Previous</a>,
|
||||||
<!--% ELSE %-->
|
<!--% ELSE %-->
|
||||||
<span><</span> Previous,
|
<span><</span> Previous,
|
||||||
<!--% END %-->
|
<!--% END %-->
|
||||||
<!--% IF links.next %-->
|
<!--% IF links.next %-->
|
||||||
<a href="<!--% absolute_path(baseurl) %-->eps/<!--% folder %--><!--% zero_pad_left(links.next) %-->/index.html" rel="next">Next ></a>,
|
<a href="<!--% absolute_path(baseurl) %-->eps/<!--% folder %--><!--% zero_pad_left(links.next) %-->/index.html" rel="next">Next ></a>,
|
||||||
<!--% ELSE %-->
|
<!--% ELSE %-->
|
||||||
Next <span>></span>
|
Next <span>></span>
|
||||||
<!--% END %-->
|
<!--% END %-->
|
||||||
<a href="<!--% absolute_path(baseurl) %-->eps/<!--% folder %--><!--% zero_pad_left(links.latest) %-->/index.html" rel="last">Latest >></a></small>
|
<a href="<!--% absolute_path(baseurl) %-->eps/<!--% folder %--><!--% zero_pad_left(links.latest) %-->/index.html" rel="last">Latest >></a></small>
|
||||||
<!--% END %-->
|
<!--% END %-->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
vim: syntax=html:ts=8:sw=4:tw=78:et:ai:
|
||||||
|
-->
|
||||||
|
Reference in New Issue
Block a user