[NEW ITA] A simply template to export in HTML format

If you made a template for printing or HTML export, you can offer it to the others here. You can also ask here for help about these templates
Post Reply
fulvio53s03
Posts: 764
Joined: 2007-04-28 05:46:43
Location: Italy

[NEW ITA] A simply template to export in HTML format

Post by fulvio53s03 »

Semplice template per esportare in formato HTML il Data Base AMC

Code: Select all

<!--  Ant Movie Catalog Template - Creato da fulvio53s03 da BOTAZ - dbotaz@tin.it -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>$$OWNER_NAME</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<STYLE><!--
A {text-decoration: none;}
A:hover {text-decoration: underline;}
TD {font: 8pt Verdana, Arial, Helvetica, sans-serif;}
--></STYLE>
</head>

<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="100%" border="0" align="center">
  <tr>
    <td><p align="right"><strong>AGGIORNATO A</strong>: $$DATE<br>
</p>

<!-- <table width="100%" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#000000">       -->
<table width="100%" style="border-top-style:solid; border-top-width:2px ">

  <tr bgcolor="#CCCCCC">
    <td align="center" width="20%><div align="center"><b>...</b></div></td>
    <td align="center" width="20%><div align="center"><b>TITOLO</b></div></td>
    <td align="center" width="25%><div align="center"><b>Artisti</b></div></td>
    <td align="center" width="35%><div align="center"><b>Brani / Trama</b></div></td>
  </tr>
<!--  <tr bgcolor="#FFFFFF">
    <td colspan="4" align="center"><b>url - file<b></td>   -->
  </tr>

$$ITEM_BEGIN
  <tr bgcolor="#FFFFFF">
    <td style="border-right-style:solid; border-right-width:1px border-top-style:solid; border-top-width:1px">
      <img alt="$$ITEM_TRANSLATEDTITLE" width="200" $$ITEM_PICTURE
    </td>
    <td style="border-right-style:solid; border-right-width:1px border-top-style:solid; border-top-width:1px">
      <strong>$$ITEM_ORIGINALTITLE</strong>
      </br><strong><a href="$$ITEM_FILEINDIV"><b>$$ITEM_TRANSLATEDTITLE</b></a> </strong>
      </br>$$ITEM_DIRECTOR
      </br>($$ITEM_YEAR)
    </td>
    <td style="border-right-style:solid; border-right-width:1px border-top-style:solid; border-top-width:1px">$$ITEM_ACTORS
    </td>
    <td>$$ITEM_DESCRIPTION
    </td>
  </tr>
  <tr bgcolor="#FFFFFF">
    <td style="border-bottom-style:solid; border-bottom-width:2px"
        colspan="4" align="center">$$ITEM_URL </br>$$ITEM_FILEPATH<p> </td>
  </tr>
$$ITEM_END

</table>

<p align="center"> </p>
<p> </p>
</td>
</tr>
</table>
</body>
</html>
Post Reply