feat: le jeu d'icone passe en fontello, gamutable est maintenant autonome, plus besoin de fontawesome

This commit is contained in:
Christophe 2024-04-12 09:27:19 +02:00
parent e7b9dcbf24
commit ee2bb085f0
19 changed files with 682 additions and 22 deletions

View file

@ -23,6 +23,18 @@ function gamutable_formulaire_admin($flux) {
return $flux;
}
function gamutable_insert_head_css($flux){
$css = find_in_path('css/fontello.css');
$css = timestamp($css);
$flux .= "<link rel='stylesheet' type='text/css' media='all' href='$css' />"."\r\n";
$css = timestamp(find_in_path('font/css/gamutable-codes.css'));
$flux .= "<link rel='stylesheet' type='text/css' media='all' href='$css' />"."\r\n";
return $flux;
}
function gamutable_affichage_final($flux) {
include_spip('inc/autoriser');