diff options
author | Florian Pritz <bluewind@xssn.at> | 2010-02-27 21:18:15 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xssn.at> | 2010-02-27 21:22:52 +0100 |
commit | 7bb325ba0df707d6de6501a00527ebac457f3e0f (patch) | |
tree | 5be03f5278d232a7f2037a1afc3ecaffd69e9b71 /system/application/views/file | |
parent | 1d5ab0d38219163e07cc0923d30349e3bc82b9d7 (diff) |
move html template to own file
Signed-off-by: Florian Pritz <bluewind@xssn.at>
Diffstat (limited to 'system/application/views/file')
-rw-r--r-- | system/application/views/file/html_footer.php | 6 | ||||
-rw-r--r-- | system/application/views/file/html_header.php | 13 |
2 files changed, 19 insertions, 0 deletions
diff --git a/system/application/views/file/html_footer.php b/system/application/views/file/html_footer.php new file mode 100644 index 000000000..9e449440f --- /dev/null +++ b/system/application/views/file/html_footer.php @@ -0,0 +1,6 @@ +</pre> + </td> + </tr> + </table> + </body> +</html> diff --git a/system/application/views/file/html_header.php b/system/application/views/file/html_header.php new file mode 100644 index 000000000..069ea6f1d --- /dev/null +++ b/system/application/views/file/html_header.php @@ -0,0 +1,13 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title><?php echo $title; ?></title> + <link rel="stylesheet" type="text/css" href="<?php echo base_url(); ?>data/paste.css" /> + </head> + <body> + <div class="top_bar"> + <a class="raw_link no" href="<?php echo $raw_link; ?>">Raw</a> + </div> + <table class="content"> + <tr> + <td class="numbers"><pre> |