12345678910111213141516171819 |
- <!DOCTYPE html>
- <head>
- <?php
- if (!isset($index_check)){
- ?>
- <title><?php echo $website_name.' : '.$page_name; ?></title>
- <?php
- }
- ?>
- <meta http-equiv="Content-Type" content="text/xhtml; charset=iso-8859-1" />
- <meta name="description" content="<?php echo $meta_description; ?>" />
- <meta name="keywords" content="<?php echo $meta_key_words; ?>" />
- <meta name="robots" content="all" />
- <link href="style.css" rel="stylesheet" type="text/css" />
- <link rel="alternate" type="application/rss+xml"
- href="<?php echo $root_path; ?>rss.php" title="Blog Artisanal" />
- </head>
- <body>
|