11 lines No EOL 206 B PHP
11 lines
No EOL
206 B
PHP
<?php | |
| |
// SVG icon helper | |
function icon($name) { | |
return (file_get_contents('icons/' . $name . '.svg')); | |
} | |
| |
// Helper to link to a documentation page | |
function docLink($page) { | |
return '/docs/' . $page; | |
} |