Nothing very important.
But I would feel more comfortable if I could understand the logic behind the location of the file base.html.twig.
As the docs say:
Generally speaking, the root of the templates/ folder should be used to house the primary templates that are supported, then create a sub-folder called partials/ to contain parts, or smaller template chunks.
This does not appear to be a smaller template chunk…
So it would be easier to extend it. Base has full layout with a bunch of blocks, which you can override. And then if you check templates in main /templates (Quark theme), all have {% extends 'partials/base.html.twig' %} and inside they simply override blocks of base.html.twig. Semantically probably would make more sense to have separate folder like /layouts on same level as /partials, but it is what it is. I guess you could use such structure in your own theme
@red, such a great question, the partials location has often sounded “off” to me. It’s unintuitive and I think, from now on, I will put the base template of my themes into a folder with a more semantically accurate name. I just can’t think of that yet
partials correlates with included templates but not so well with extended and embedded templates. This is a Grav convention I think I will flout in future. I like architectures that make sense!
I think it’s because some themes and plugins have a layout.html.twig.
I am thinking in this theme I make in the future I might put the base template into “foundation” or “scaffolding” or “structure” or something like that.