beautifulhugo
beautifulhugo copied to clipboard
Missing "blog-post" class?
The blog-post
class is referenced in single.html
but is not defined in any style sheet. Is this an intentional omission or an accident?
I discovered this while investigating why post previews display in Open Sans on the main page while actual posts display in Times New Roman. The following is a quick fix.
.blog-post {
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
Since this theme is a port from Beautiful Jekyll, a code search would give you insight to the problem.
So, as it's not in Beautiful Jekyll then it's not in beautifulhugo, right?