2020-05-30 20:23:04 +00:00
|
|
|
<?php
|
2020-05-31 02:01:29 +00:00
|
|
|
|
2020-05-31 02:32:02 +00:00
|
|
|
// for some reason inclusion of .css.php fails sometimes on browser, so i have
|
2020-05-31 02:01:29 +00:00
|
|
|
// to do this workaround
|
2020-05-31 02:32:02 +00:00
|
|
|
function include_css($path){
|
|
|
|
echo("<style>");
|
|
|
|
include($path);
|
|
|
|
echo("</style>");
|
|
|
|
}
|
|
|
|
|
|
|
|
echo("<link rel='stylesheet' type='text/css' href='/themes/minimalpunk/css/reset.css'>\n\t");
|
|
|
|
|
|
|
|
include_css("css/main.css");
|
2020-05-31 02:01:29 +00:00
|
|
|
|
|
|
|
echo("<link rel='shortcut icon' type='image/png' href='/themes/minimalpunk/assets/favicon.png'/>\n\t");
|
|
|
|
echo("<meta name='viewport' content='width=device-width, initial-scale=1.0'>\n");
|
2020-05-30 20:23:04 +00:00
|
|
|
?>
|