header.tmpl 974 B

1234567891011121314151617181920
  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. <link rel="stylesheet" type="text/css" href="css/structure.css" />
  6. <link rel="stylesheet" type="text/css" href="css/screen.css" media="screen" />
  7. <link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
  8. <?php
  9. foreach ( [ 'avatars', 'screen', 'print', 'favicon.ico' ] as $file ) {
  10. $rel = ( $file == 'favicon.ico' ) ? "icon" : "stylesheet";
  11. $type = ( $file == 'favicon.ico' ) ? "image/vnd.microsoft.icon" : "text/css";
  12. $dir = ( $file == 'favicon.ico' ) ? "img/icon" : "css";
  13. $href = ( file_exists( "$dir/$file" ) ? "$dir/custom/$file" : "$dir/$file";
  14. echo "<link rel=\"$rel\" type=\"$type\" href=\"$href\" />";
  15. }
  16. ?>
  17. <title>
  18. <?php echo $config['htmltitle']; ?>
  19. </title>
  20. </head>