forked from HPR/hpr_generator
		
	Fix MACRO step_navigation
absolute_path MACRO was named incorrectly and baseurl must be passed into macro.
This commit is contained in:
		| @@ -49,7 +49,7 @@ | ||||
| 	<header> | ||||
| 		<h1>hpr<!--% episode.id %--> :: <!--% episode.title %--></h1> | ||||
| 		<h3><!--% episode.summary %--></h3> | ||||
| 		<p class="meta"><!--% step_navigation(episode) %--> | ||||
| 		<p class="meta"><!--% step_navigation(baseurl,episode) %--> | ||||
| 		</p> | ||||
| <p><!--% IF get_avatar(episode.hostid) != 'hpr_logo.png' %--> | ||||
| <img src="<!--% absolute_path(baseurl) %-->images/<!--% get_avatar(episode.hostid) %-->" height="80" width="80" alt="" /></a><br><!--% END %--> | ||||
|   | ||||
| @@ -16,17 +16,17 @@ | ||||
| <!--% IF baseurl %-->./<!--% ELSE %-->/<!--% END %--> | ||||
| <!--% END %--> | ||||
|  | ||||
| <!--% MACRO step_navigation(links) BLOCK %--> | ||||
| <small><a href="<!--% absolute_url(baseurl) %-->eps/hpr<!--% zero_pad_left(links.earliest) %-->/index.html" rel="first"><< First</a>,  | ||||
| <!--% MACRO step_navigation(baseurl, links) BLOCK %--> | ||||
| <small><a href="<!--% absolute_path(baseurl) %-->eps/hpr<!--% zero_pad_left(links.earliest) %-->/index.html" rel="first"><< First</a>,  | ||||
| 	<!--% IF links.previous %--> | ||||
| 	<a href="<!--% absolute_url(baseurl) %-->eps/hpr<!--% zero_pad_left(links.previous) %-->/index.html" rel="previous">< Previous</a>, | ||||
| 	<a href="<!--% absolute_path(baseurl) %-->eps/hpr<!--% zero_pad_left(links.previous) %-->/index.html" rel="previous">< Previous</a>, | ||||
| 	<!--% ELSE %--> | ||||
| 	<span><</span> Previous, | ||||
| 	<!--% END %--> | ||||
| 	<!--% IF links.next %--> | ||||
| 	<a href="<!--% absolute_url(baseurl) %-->eps/hpr<!--% zero_pad_left(links.next) %-->/index.html" rel="next">Next ></a>, | ||||
| 	<a href="<!--% absolute_path(baseurl) %-->eps/hpr<!--% zero_pad_left(links.next) %-->/index.html" rel="next">Next ></a>, | ||||
| 	<!--% ELSE %--> | ||||
| 	Next <span>></span> | ||||
| 	<!--% END %--> | ||||
| 	<a href="<!--% absolute_url(baseurl) %-->eps/hpr<!--% zero_pad_left(links.latest) %-->/index.html" rel="last">Latest >></a></small> | ||||
| 	<a href="<!--% absolute_path(baseurl) %-->eps/hpr<!--% zero_pad_left(links.latest) %-->/index.html" rel="last">Latest >></a></small> | ||||
| <!--% END %--> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user