Requirement: Kirby 3
For a kirby3 site, this plugin (omz13/htmlsitemap) generates a human-facing html-based sitemap at '/sitemap'.
- Generates an html-based sitemap as a structured unordered list (
<ul>
). - Pages or their children can be excluded based in the following criteria, and in the following priority:
- The homepage is always included.
- The error page is always excluded; who wants to see the error page?
- Only pages that have a status of "published" are included, i.e. those with "draft" or "unpublished" are excluded.
- Unpublished pages can be explicitly included based on their slugname; c.f.
includeUnlistedWhenSlugIs
in Configuration. - Pages made using certain templates can be excluded; c.f.
excludePageWhenTemplateIs
in Configuration. - Pages with certain slugnames can be excluded; c.f.
excludePageWhenSlugIs
in Configuration. - Pages with a content field
excludefromhtmlsitemap
that istrue
are excluded. - Pages with a method
issunset
that returnstrue
are excluded. - Pages with a method
isunderembargo
that returnstrue
are excluded. - The children of pages made using certain templates can be excluded; c.f.
excludeChildrenWhenTemplateIs
in Configuration. - The children of pages made using certain templates can be included as anchored links to their parent; c.f.
linkyChildrenWhenTemplateIs
in Configuration.
- For debugging purposes, the generated html sitemap can include additional information as html comments; c.f.
debugqueryvalue
in Configuration.
In the current proof-of-concept, the sitemap is a presented as a simple unordered list: it is envisioned that this will be transformed into something with more aesthetics through css.
For a computer-oriented xml-based sitemp, kindly see omz13/kirby3-xmlsitemap.
For a plugin that provides the methods issunset
and isunderembargo
, kindly see omz13/kirby3-suncyclepages.
Kirby3 is under beta, therefore this plugin, and indeed kirby3 itself, may or may not play nicely with each other, or indeed work at all: use it for testing purposes only; if you use it in production then you should be aware of the risks and know what you are doing.
For 1.0, the non-binding list of planned features and implementation notes are:
- MVP
- Debugging option
- Respect page status
- Allow specific unlisted pages to be included c.f.
includeUnlistedWhenSlugIs
- Exclusion of pages by template – c.f.
excludePageWhenTemplateIs
- Exclusion of individual pages – c.f.
excludePageWhenSlugIs
- Exclude embargoed pages
- Exclude sunset pages
- One-pager support c.f.
excludeChildrenWhenTemplateIs
andlinkyChildrenWhenTemplateIs
- If the site has content at '/sitemap', do not hijack
- Provide tags/snippets to include a html sitemap
- Allow configuration of sitemap
<div>
andclass
attributes. - Consider style using slickmap
- Consider style using Pure CSS Tree Menu
- Consider style using CSS to create a simple tree structure with connecting lines
- Consider style using Nested Folders
- Cache (DoS mitigation)
- Automate GitHub release – gothub? github-release-notes?
Pick one of the following per your epistemological model:
composer require --no-dev omz13/kirby3-htmlsitemap
; the plugin will automagically appear insite/plugins
.- Download a zip of the latest release - master.zip - and copy the contents to your
site/plugins/kirby3-htmlsitemap
. git submodule add https://github.com/omz13/kirby3-htmlsitemap.git site/plugins/kirby3-htmlsitemap
.
For the record: installation by composer is cool; supporting installation by zip and submodule was an absolute pain, especially as I am an installation by composer person, so do feel guilted into getting me Coffee, Beer, etc., because this is for your benefit and not mine (and yes, I would have have preferred to spend my time somewhere warm and sunny instead of being hunched over a keyboard while the snow falls outside and the thermometer shows no inclination to get above 0C).
The following mechanisms can be used to modify the plugin's behaviour.
In your site's site/config/config.php
the following entries under the key omz13.xmlsitemap
can be used:
disable
: a boolean which, if true, to disable the xmlsitemap functionality (c.f.xmlsitemap
in viasite.txt
).debugqueryvalue
: a string to be as the value for the query parameterdebug
to return the sitemap page with debugging information (embedded as html comments). The global kirbydebug
configuration must also be true for this to work. The url must be to/sitemap.xml?debug=debugqueryvalue
and not/sitemap?debug=_debugqueryvalue_
(i.e. the.xls
part is important). Be aware that the debugging information will show, if applicable, details of any pages that have been excluded (so if you are using this in production and you don't want things to leak, setdebugqueryvalue
to something random). Furthermore, the site debug flag needs to be set too (i.e. thedebug
flag insite/config.php
).- !!!
includeUnlistedWhenSlugIs
: an array of slugnames whose pages are to be included if their status is unlisted. excludePageWhenTemplateIs
: an array of templates names whose pages are to be excluded from the xml-sitemap.excludePageWhenSlugIs
: an array of slug names whose pages are to be excluded from the xml-sitemap.excludeChildrenWhenTemplateIs
: an array of templates names whose children are to be ignored (but pages associated with the template is to be included); this is used for one-pagers (where the principal page will be included and all the 'virtual' children ignored).linkyChildrenWhenTemplateIs
: an array of templates names whose children are to be included as anchored links to their parent; this is used for one-pagers (where the principal page will be included and all the 'virtual' children need their own entry in the sitemap). Note that it is your responsibility to ensure that the anchor names are generated by the templates for the child pages.
For example, for the Kirby Starter Kit, the following would be applicable:
<?php
return [
'omz13.htmlsitemap' => [
'debugqueryvalue' => false,
'excludePageWhenTemplateIs' => array('sandbox'),
'excludePageWhenSlugIs' => [ 'form','contact' ],
'excludeChildrenWhenTemplateIs' => array('events','one-pager','shop','testimonials'),
'linkyChildrenWhenTemplateIs' => array('team')
],
];
And to have a debugged sitemap returned at /sitemap?debug=wombat
, it would be:
<?php
return [
'debug' => true,
'omz13.htmlsitemap' => [
'debugqueryvalue' => 'aardvark',
'excludePageWhenTemplateIs' => array('sandbox'),
'excludePageWhenSlugIs' => [ 'form','contact' ],
'excludeChildrenWhenTemplateIs' => array('events','one-pager','shop','testimonials'),
'linkyChildrenWhenTemplateIs' => array('team')
],
];
If a page's content has a field called excludefromxmlsitemap
and this is set to true
, then that page (and any children, if present) will be excluded. Similarly to site.txt
, this can be easily achieved in a blueprint.
type: fields
fields:
excludefromhtmlsitemap:
label: Exclude from sitemap
type: toggle
default: off
text:
- include implicitly
- explicitly exclude
As pages are implicitly included within a sitemap, this mechanism should only be used when you have a reason to explcitly exclude a page when it is not possible to do otherwise (c.f. excludePageWhenTemplateIs
).
A sample rendered /sitemap
would look like:
And the underlying HTML is
<body>
<ul>
<li id="home"><a href="https://kir.by">Home</a>
<li><a href="https://kir.by/projects">Projects</a>
<ul>
<li><a href="https://kir.by/projects/trees-and-stars-and-stuff">Trees and stars and stuff</a>
<li><a href="https://kir.by/projects/oceans-are-quite-nice">Oceans are quite nice</a>
<li><a href="https://kir.by/projects/glowing-in-the-dark-tent">Glowing in the dark tent</a>
<li><a href="https://kir.by/projects/drones">Drones</a>
<li><a href="https://kir.by/projects/lame-light-effects">Lame light effects</a>
</ul>
<li><a href="https://kir.by/blog">Blog</a>
<ul>
<li><a href="https://kir.by/blog/extending-kirby">Extending Kirby</a>
<li><a href="https://kir.by/blog/licensing-kirby">Licensing Kirby</a>
<li><a href="https://kir.by/blog/content-in-kirby">Content in Kirby</a>
</ul>
<li><a href="https://kir.by/shop">Shop</a>
<li><a href="https://kir.by/team">Team</a>
<ul>
<li><a href="https://kir.by/team#bob-meowerly">Bob Meowerly</a></li>
<li><a href="https://kir.by/team#brad-kitt">Brad Kitt</a></li>
<li><a href="https://kir.by/team#cat-winslet">Cat Winslet</a></li>
<li><a href="https://kir.by/team#hunter-s-tomcat">Hunter S. Tomcat</a></li>
</ul>
<li><a href="https://kir.by/one-pager">One Pager Example</a>
<li><a href="https://kir.by/restaurant-menu">Restaurant Menu</a>
<li><a href="https://kir.by/events">Events</a>
<li><a href="https://kir.by/testimonials">Testimonials</a>
</ul>
</body>
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.
You are prohibited from using this plugin in any project that promotes racism, sexism, homophobia, animal abuse, violence or any other form of hate speech.
To show your support for this project you are welcome to buy me a coffee.