You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
581 B
24 lines
581 B
<?php |
|
|
|
if (!defined('_ECRIRE_INC_VERSION')){ |
|
return; |
|
} |
|
|
|
/* |
|
// paquet.xml |
|
|
|
<pipeline nom="scss_insert_head" inclure="colonne_pipelines.php" /> |
|
<pipeline nom="insert_head" inclure="colonne_pipelines.php" /> |
|
|
|
*/ |
|
/* insertion de scripts scss calculés, mmm?? */ |
|
function colonne_scss_insert_head($flux) { |
|
//$flux .='<link rel="stylesheet" href="'.scss_css(find_in_path('css/spip_colonne.css')).'">'; |
|
return $flux; |
|
} |
|
|
|
/* insertion du js */ |
|
function colonne_insert_head($flux) { |
|
//$flux .='<script src="'.find_in_path('javascript/spip_colonne.js').'"></script>'; |
|
return $flux; |
|
} |