Por que o @include não é sobrescrito pelo @if quem vem logo abaixo, quando $half-post é true?
@mixin theme-collection($half-post: true) {
@include for-phone-only {
width: $full-width;
}
@if $half-post {
width: $half-width;
} @else {
width: $full-width;
}
}