
Las parte del código que nos interesa es la siguiente:
h3.post-title, .comments h4 {
font: $(post.title.font);
margin: .75em 0 0;
}
Debajo de: margin: .75em 0 0;
Pega el siguiente código:
text-align: center;
Así debe quedar el código modificado:
h3.post-title, .comments h4 {
font: $(post.title.font);
margin: .75em 0 0;
text-align: center;
}