website/app/helpers.php
Pascal Borreli 42a68a7e9c Fixed typos
2016-03-24 19:20:05 +00:00

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;
}