HermanMartinus / bearblog

Free, no-nonsense, super fast blogging.
MIT License
2.36k stars 73 forks source link

Small UI typo #269

Closed shawnyeager closed 5 months ago

shawnyeager commented 5 months ago

FYI. Head —> Header

image

HermanMartinus commented 5 months ago

So this isn't actually a typo, but just a bit of a confusing one. In HTML you have both <head> and <header> elements that play very different roles. In this case the directive is for <head> where you can add meta tags, javascript, and the like. <header> is reserved for HTML structural elements such as titles and nav bars.

This is a bit confusing since <footer> is right beneath it, but it's generally accepted to add javascript to this element.

Long story short, I may need to give this a think and update the labels to be more clear.

shawnyeager commented 5 months ago

Ah, I should have caught that. Cheers.