source: trunk/filemanager/tp/dompdf/www/head.inc @ 2000

Revision 2000, 1.4 KB checked in by amuller, 14 years ago (diff)

Ticket #597 - Implementação do módulo gerenciador de arquivos

Line 
1<?php
2function li_arrow() {
3  return '<li style="list-style-image: url(\'images/arrow_0' . rand(1,6) . '.gif\');">'; 
4}
5function li_star() {
6  return '<li style="list-style-image: url(\'images/star_0' . rand(1,5) . '.gif\');">'; 
7}
8?>
9<?php echo '<?' . 'xml version="1.0" encoding="iso-8859-1"?' . '>'; ?>
10<!DOCTYPE html
11  PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
12  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
13<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
14<head>
15<title>dompdf - The PHP 5 HTML to PDF Converter</title>
16<link rel="stylesheet" href="style.css" type="text/css"/>
17<link rel="SHORTCUT ICON" href="http://<?php echo $_SERVER["HTTP_HOST"] . dirname($_SERVER["PHP_SELF"]);?>/images/favicon.ico"/>
18</head>
19
20<body>
21<div id="header">
22<a href="index.php"><img id="logo" src="images/title.gif" alt="dompdf"/></a>
23</div>
24<div id="left_col">
25<h2>dompdf Homepage</h2>
26  <ul>
27    <li style="list-style-image: url('images/star_02.gif');"><a style="font-size: 0.8em;" href="http://code.google.com/p/dompdf/">dompdf @ google code</a></li>
28  </ul>
29 
30<h2>Examples</h2>
31  <ul>
32    <li style="list-style-image: url('images/arrow_02.gif');"><a href="examples.php">samples</a></li>
33    <li style="list-style-image: url('images/arrow_03.gif');"><a href="examples.php#demo">demo</a></li>
34  </ul>
35
36  <p>Send bug reports &amp; support questions to <a href="http://groups.google.com/group/dompdf">Google Groups</a>.
37  </p>
38</div> 
39<div id="content">
Note: See TracBrowser for help on using the repository browser.