Hiya folks. I’m making a new theme at the moment and can’t seem to find how to integrate CSS that’s added from the ‘Edit CSS’ button on the Design page. Is there something I should be including in the theme?
There’s a partial named microblog_head.html
to include in your theme that adds support for custom CSS and a bunch of other Micro.blog specific things.
<head>
<-- Stuff you want in <head>. -->
<-- … -->
{{ partial "microblog_head.html" . }}
</head>
1 Like
legend. Thanks for that!