Hello there!
I’d like to show a border on the nav and footer of the first page without showing it on other pages, is it possible to have add a conditional e.g.
.site-header {
{{ if .IsHome }}border-bottom: 1px solid $color-gray-100;{{ end }}
margin-bottom: 3.33333em;
padding-bottom: 1em;
padding-top: 1em;
@media only screen and (min-width: 601px) {
margin-bottom: 5em;
}
}
or
{{ if .IsHome }}
site-header {
border-bottom: 1px solid $color-gray-100;
margin-bottom: 3.33333em;
padding-bottom: 1em;
padding-top: 1em;
@media only screen and (min-width: 601px) {
margin-bottom: 5em;
}
}
{{ end }}
I know it’s a stupid question but I’d like to see if it’s possible as I’ve done it with inline CSS before.