14 lines
481 B
PHP
14 lines
481 B
PHP
<?php
|
|
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");
|
|
?>
|