index : fluxbb | |
Archlinux32 customized Fluxbb installation | gitolite user |
summaryrefslogtreecommitdiff |
author | Andreas Baumann <mail@andreasbaumann.cc> | 2020-02-01 08:57:06 +0100 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2020-02-01 08:57:06 +0100 |
commit | ada3beb0a6c649bd9bfc6a87b2fe69ee8ae563f7 (patch) | |
tree | df74b326c096fad4d74b90988caed727c15847ef /style/ArchLinux/archfooter.php |
-rw-r--r-- | style/ArchLinux/archfooter.php | 11 |
diff --git a/style/ArchLinux/archfooter.php b/style/ArchLinux/archfooter.php new file mode 100644 index 0000000..b720bb6 --- /dev/null +++ b/style/ArchLinux/archfooter.php @@ -0,0 +1,11 @@ +<?php global $arch_footer; +if ($arch_footer) { ?> + <ul id="archfooter"> + <?php + foreach ($arch_footer as $arch_name => $arch_url) { + echo '<li id="aft-' . strtolower($arch_name) . '"' + . '><a href="' . $arch_url . '">' . $arch_name . '</a></li>'; + } + ?> + </ul> +<?php } |