Просмотр файла themes/default.php

Размер файла: 2.71Kb
<?php
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); 
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); 
header("Cache-Control: no-store, no-cache, must-revalidate"); 
header("Cache-Control: post-check=0, pre-check=0", false); 
header("Pragma: no-cache");
header("Content-type:text/html; charset=utf-8");
include ("mytheme.php");
echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">
      <html>
      <head>";
echo "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
      <style type=\"text/css\">
      body { font-weight: 11; font-size: $font_size; font-family: Courier new; color: $font_color; background-color: $background_color }
      a:link,a:active,a:visited { text-decoration: underline; color : $a_link_color }
      a:hover { text-decoration: none; color : $a_hover_color }
      div { margin: 1px 0px 1px 0px; padding: 1px 1px 1px 1px; font-size: 11px;}
      table { margin: 1px 0px 1px 0px; padding: 1px 1px 1px 1px;}
      .b {margin: 0px; border-top: ".$b_border_top."px solid $b_border_top_color; border-left: ".$b_border_left."px solid $b_border_left_color; border-right: ".$b_border_right."px solid $b_border_right_color; border-bottom: ".$b_border_bottom."px solid $b_border_bottom_color; padding: 2px; vertical-align: middle; }
      .c {margin: 0px; border-top: ".$c_border_top."px solid $c_border_top_color; border-left: ".$c_border_left."px solid $c_border_left_color; border-right: ".$c_border_right."px solid $c_border_right_color; border-bottom: ".$c_border_bottom."px solid $c_border_bottom_color; padding: 2px; vertical-align: middle; background-color: $c_background_color;  font-size: $c_font_size px; color: $c_font_color;}
	   .e {margin: 0px; border-top: ".$e_border_top."px solid $e_border_top_color; border-left: ".$e_border_left."px solid $e_border_left_color; border-right: ".$e_border_right."px solid $e_border_right_color; border-bottom: ".$e_border_bottom."px solid $e_border_bottom_color; padding: 2px; vertical-align: middle; background-color: $e_background_color;  font-size: $e_font_size px; color: $e_font_color;}
	   .f {margin: 0px; border-top: ".$f_border_top."px solid $f_border_top_color; border-left: ".$f_border_left."px solid $f_border_left_color; border-right: ".$f_border_right."px solid $f_border_right_color; border-bottom: ".$f_border_bottom."px solid $f_border_bottom_color; padding: 2px; vertical-align: middle; background-color: $f_background_color;  font-size: $f_font_size px; color: $f_font_color; border-style : dotted;}
	    .button {
    BORDER: #ffffff 0px outset;
    FONT-WEIGHT: bold;
    FONT-SIZE: 12px;
    BACKGROUND-COLOR: #999999;
    FONT-FAMILY: Verdana;}
      </style>
      </head>
      <body>";
	 
?>