Hey Guys,
I've been working on inserting the meta Data Jacket i.s.o. the Cover/Title page.
And I got quite a ways reading the old posts and stuff on this forum.
But now I'm stumped on 2 things.
1st - I want to have a functioning hyperlink to both the site as well as the authors page (identical to how the title page works)
2nd - I want the items of my pairing to list each on separate lines rather then comma separated.
This is what I've got so far, if there is anyone who can give me an assist, I would be most grateful.
Code:
<html xmlns="{xmlns}">
<head>
<title>{title_str}</title>
<meta name="calibre-content" content="jacket"/>
<style type="text/css">{css}</style>
</head>
<body>
<!-- Header -->
<div class="cbj_banner">
<table class="cbj_header">
<tr>
<td class="cbj_title" colspan="2">{title}</td>
</tr>
<tr>
<!-- Change "ids" so it will actually follow the hyperlink to the story -->
<td class="cbj_title" colspan="2"><a href={ids}>{title}</a></td>
</tr>
<tr>
<!-- Change "ids" so it will actually follow the hyperlink to the author -->
<td class="cbj_author" colspan="2">by: {author}</td>
</tr>
<tr>
<td class="cbj_title" colspan="2"><a href={ids}>{author}</a></td>
</tr>
<tr>
<td class="cbj_series" colspan="2">{series.roman}</td>
</tr>
<tr>
<td class="cbj_pubdata" colspan="2">{publisher}</td>
</tr>
<tr>
<td class="cbj_header" colspan="2"><hr class="metadata_divider" /></td>
</tr>
<tr data-calibre-jacket-searchable-tags="1" style="color:white; display:none"><td colspan="2">{searchable_tags}</td></tr>
</table>
<!-- Footer -->
<div class="cbj_footer">{footer}</div>
</div>
<!-- Banner -->
<hr class="cbj_kindle_banner_hr" />
<!-- Change behaviour of tag items to continue on next time i.s.o. comma seperated -->
<div style="display: display._show"><b>{_show_label}:</b> {_show}</div>
<div style="display: display._crossover"><b>{_crossover_label}:</b> {_crossover}</div>
<div style="display: display._m_char"><b>{_m_char_label}:</b> {_m_char}</div>
<div style="display: display._m_pair"><b>{_m_pair_label}:</b> {_m_pair}</div>
<div style="display: display._genre"><b>{_genre_label}:</b> {_genre}</div>
<br>
<div style="display: display.pubdate"><b>{pubdate_label}:</b> {pubdate} - <b>{_last_update_label}:</b> {_last_update}</div>
<div style="display: display._status"><b>{_status_label}:</b> {_status}</div>
<tr>
<td class="cbj_header" colspan="2"><hr class="metadata_divider" /></td>
</tr>
<div class="cbj_comments"><b>Summery:</b> {comments}</div>
<tr>
<td class="cbj_header" colspan="2"><hr class="metadata_divider" /></td>
</tr>
<div style="display: display.rating"><b>{rating_label}:</b> {rating}</div>
<div class="cbj_comments">{_review}</div>
</body>
</html>