31 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 | 
						|
<html>
 | 
						|
<head>
 | 
						|
  <title><%site_title%>: <%if error%>Error<%else%><%Title%><%endif%></title>
 | 
						|
  <base target="_parent" />
 | 
						|
<%include include_common_head.html%>
 | 
						|
</head>
 | 
						|
<body id="jump_frame">
 | 
						|
  <div class="jumpwrapper">
 | 
						|
    <a href="<%config.build_root_url%>/<%home_index%>"><img src="<%Links::Utils::image_url('logo-small.gif')%>" class="jumplogo" alt="<%site_title%>" /></a>
 | 
						|
 | 
						|
  <%if error%>
 | 
						|
    <p class="errormessage">
 | 
						|
      <%error%>
 | 
						|
    </p>
 | 
						|
  <%else%>
 | 
						|
    <h4>
 | 
						|
      <%if detailed_url%><a href="<%detailed_url%>"><%endif%><%Title%><%if detailed_url%></a><%endif%> <%if Votes%><%set intRating = $Rating i/ 1%><img src="<%Links::Utils::image_url("stars-10-${intRating}.gif")%>" alt="<%intRating%> out of 10 stars" title="<%intRating%> out of 10 stars" /> <span class="hsmall">(<%Votes%> vote<%if Votes != 1%>s<%endif%>)</span><%endif%>
 | 
						|
    </h4>
 | 
						|
    <div class="actions">
 | 
						|
      <%if Review_Count%><a href="<%config.db_cgi_url%>/review.cgi?ID=<%ID%>">Read <%Review_Count%> Review<%if Review_Count != 1%>s<%endif%></a><%endif%>
 | 
						|
      <a href="<%config.db_cgi_url%>/review.cgi?ID=<%ID%>;add_review=1">Review Link</a>
 | 
						|
      <a href="<%config.db_cgi_url%>/rate.cgi?ID=<%ID%>">Rate Link</a>
 | 
						|
      <%if config.bookmark_enabled%><a href="<%config.db_cgi_url%>/bookmark.cgi?action=link_add;ID=<%ID%>">Bookmark Link</a><%endif%>
 | 
						|
      <a href="<%escape_html URL%>">Remove Frame</a>
 | 
						|
    </div>
 | 
						|
  <%endif%>
 | 
						|
  </div>
 | 
						|
</body>
 | 
						|
</html>
 |