bnomei/kirby3-htmlhead

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

Summary

Maintainability
A
0 mins
Test Coverage
<?php

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