Kirby 3 Plugin for a best-practice HTML Head Element extendable with snippets.
Support open source!
This plugin is free but if you use it in a commercial project please consider to sponsor me or make a donation.
If my work helped you to make some cash it seems fair to me that I might get a little reward as well, right?
Be kind. Share a little. Thanks.
‐ Bruno
M | O | N | E | Y |
---|---|---|---|---|
Github sponsor | Patreon | Buy Me a Coffee | Paypal dontation | Hire me |
site/plugins/kirby3-htmlhead
orgit submodule add https://github.com/bnomei/kirby3-htmlhead.git site/plugins/kirby3-htmlhead
orcomposer require bnomei/kirby3-htmlhead
There is a language helper available as well.
<?php ?>
<html <?= site()->langAttr() ?>>
<!-- ... -->
</html>
In any template or your header
snippet call the page method right after the tags that should come first.
<!DOCTYPE html>
- <html>
+ <html <?= site()->langAttr() ?>>
<head>
- <meta charset="utf-8">
- <meta http-equiv="x-ua-compatible" content="ie=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1 shrink-to-fit=no">
- <base href="https://github.com/bnomei/kirby3-htmlhead/blob/master/<?= site()->url() ?>'">'
- <title><?= $page->title() ?></title>
+ <?= $page->htmlhead() ?>
You can also override any defaults in forwarding the new or additional data to the page method.
<?= $page->htmlhead([
// override defaults
'htmlhead/meta-description' => function ($kirby, $site, $page) {
return Str::unhtml($page->myDescriptionField()->kti());
},
// add new
'htmlhead/link-feedrss' => function ($kirby, $site, $page) {
return []; // use defaults of snippet
},
]) ?>
But I would recommend that you configure which snippets are use with the config settings (see below).
There is only one setting called bnomei.htmlhead.snippets
and it takes an array of callbacks. It has sensible defaults but you can add any of the provided snippets or your own snippets. The unittests for this plugin have a more specific example for you to explore.
https://github.com/bnomei/kirby3-htmlhead/blob/master/tests/config/config.php
<?php
return [
'bnomei.htmlhead.snippets' => [
/********************************
* IMPORTANT: order matters! based on research from @csswizardry
*/
'htmlhead/recommended-minimum' => null,
'htmlhead/title' => function ($kirby, $site, $page) {
return ['title' => $page->title()];
},
// async first then sync js scripts
'htmlhead/script-js' => function ($kirby, $site, $page) {
return ['files' => [
'/assets/app.js'
]];
},
'htmlhead/link-css' => function ($kirby, $site, $page) {
return ['files' => ['/assets/app.css']];
},
'htmlhead/link-preload' => function ($kirby, $site, $page) {
return ['files' => ['/assets/app.css', '/endpoint/data.json']];
},
// deferred scripts after sync css is faster
'htmlhead/script-js-defer' => function ($kirby, $site, $page) {
return ['files' => [
[
'src' => '//unpkg.com/alpinejs',
'defer' => true,
],
]];
},
'htmlhead/link-prefetch' => function ($kirby, $site, $page) {
return ['files' => ['/assets/next-page.js']];
},
'htmlhead/base' => function ($kirby, $site, $page) {
return ['href' => kirby()->site()->url()];
},
'htmlhead/meta-robots' => function ($kirby, $site, $page) {
return ['content' => 'index, follow, noodp'];
},
'htmlhead/meta-author' => function ($kirby, $site, $page) {
return ['content' => $site->author()];
},
'htmlhead/meta-description' => function ($kirby, $site, $page) {
return ['content' => Str::unhtml($page->seodesc())];
},
'htmlhead/link-feedrss' => function ($kirby, $site, $page) {
// defaults
return [
'url' => url('/feed'),
'title' => $page->title(),
];
},
'htmlhead/link-feedrss' => function ($kirby, $site, $page) {
// defaults
return [
'url' => url('/feed'),
'title' => $page->title(),
];
},
],
// ... other options
];
This plugin is provided "as is" with no guarantee. Use it at your own risk and always test it yourself before using it in a production environment. If you find any issues, please create a new issue.
It is discouraged to use this plugin in any project that promotes racism, sexism, homophobia, animal abuse, violence or any other form of hate speech.