2020-05-30 20:23:04 +00:00
|
|
|
<?php
|
2020-05-31 02:01:29 +00:00
|
|
|
echo("<link rel='stylesheet' type='text/css' href='/themes/minimalpunk/css/reset.css'>\n\t");
|
|
|
|
|
|
|
|
// For some reason inclusion of .css.php fails sometimes on browser, so I have
|
|
|
|
// to do this workaround
|
|
|
|
echo("<style>");
|
|
|
|
include("css/main.css");
|
|
|
|
include('css/login.css');
|
|
|
|
echo("</style>");
|
|
|
|
|
|
|
|
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
|
|
|
?>
|