header.tmpl 781 B

1234567891011121314151617
  1. <head>
  2. <meta charset="utf-8" />
  3. <meta name="description" content="A Simple CMS by teodesian.net"/>
  4. <meta name="viewport" content="width=device-width">
  5. <?php
  6. $links = '<link rel="stylesheet" type="text/css" href="themed/' . $theme . '/css/structure.css" />';
  7. $links .= '<link rel="stylesheet" type="text/css" href="themed/' . $theme . '/css/screen.css" media="screen" />';
  8. $links .= '<link rel="stylesheet" type="text/css" href="themed/' . $theme . '/css/print.css" media="print" />';
  9. $links .= '<link rel="icon" type="image/vnd.microsoft.icon" href="themed/' . $theme . '/img/icon/favicon.ico" />';
  10. echo $links;
  11. // TODO inject avatars these via style tags based on config
  12. ?>
  13. <title>
  14. <?php echo $config['htmltitle']; ?>
  15. </title>
  16. </head>