diff --git a/www/sflphone.funcs.php b/www/sflphone.funcs.php
index 5462e6149f85d47eb57f457331713022867bc6d1..48c02816f998d2dba810894924753cacc0d2f2b9 100644
--- a/www/sflphone.funcs.php
+++ b/www/sflphone.funcs.php
@@ -140,8 +140,9 @@ function compile_page($hash, $page) {
   // keep return the hash
   $fnconf = bring_local_file('asciidoc.conf');
 
-  // -d book so we can render H1s
-  $p = popen("GIT_DIR=".$GIT_REPOS." git-show $hash | asciidoc -f \"".$fnconf."\" -d book --no-header-footer - 2>&1", 'r');
+  // -d book, so we can render H1s
+  // -a icons, enables the display of graphic icons in admonition blocks.
+  $p = popen("GIT_DIR=".$GIT_REPOS." git-show $hash | asciidoc -a icons -f \"".$fnconf."\" -d book --no-header-footer - 2>&1", 'r');
 
   if (!$p) {
     return "Unable to compile file: $page ($hash)\n";