markata extend in configuration ====================================== {.more-cinematic} Date: September 11, 2022 ![Astronauts stunting some stylish color explosion](https://stable-diffusion.waylonwalker.com/000172.2339173599.webp){.more-cinematic} A long needed feature of markata has been the ability to really configure out templates with configuration rather. It's been long that you needed that if you really want to change the style, meta tags, or anything in the head you needed to write a plugin or eject out of the template and use your own. ## Adding some Head Now you can add some extra style to your site with the existing built-in template. ``` toml [[markata.head]] text = """ img { width: 100%; height: auto; } ul { display: flex; flex-wrap: wrap; } """ ``` ## You can have more than one Head Each text entry in `markata.head` just gets appended raw into the head. ``` toml [[markata.head]] text = """ img { width: 100%; height: auto; } ul { display: flex; flex-wrap: wrap; } """ [[markata.head]] text = """ console.log('hey there')