bnomei/kirby3-htmlhead

View on GitHub
snippets/htmlhead/link-feedjson.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

echo HTML::tag('link', '', [
    'rel' =>  'alternate',
    'type' => 'application/json',
    'href' =>  url($url ?? '/feed'),
    'title' => $title ?? $page->title(),
]);