Compare commits
2 Commits
ba844bf59a
...
f182add92a
Author | SHA1 | Date |
---|---|---|
Kevin C. Coram | f182add92a | |
Kevin C. Coram | d85b711791 |
|
@ -30,28 +30,32 @@
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
<main {{ if eq .Kind "page" }}class="h-entry"{{ else if in (slice "section" "taxonomy" "taxonomyTerm" ) .Kind }}class="h-feed"{{ end }}>
|
<main {{ if eq .Kind "page" }}class="h-entry"{{ else if in (slice "section" "taxonomy" "taxonomyTerm" ) .Kind }}class="h-feed"{{ end }}>
|
||||||
<header>
|
<div class="content-box">
|
||||||
{{- block "content-header" . -}}
|
<header>
|
||||||
{{- end -}}
|
{{- block "content-header" . -}}
|
||||||
|
{{- end -}}
|
||||||
|
</header>
|
||||||
|
<section>
|
||||||
|
{{- block "content" . -}}
|
||||||
|
<!-- The part of the page that begins to differ between templates -->
|
||||||
|
{{ end }}
|
||||||
|
</section>
|
||||||
|
<footer>
|
||||||
|
{{- block "content-footer" . -}}
|
||||||
|
{{- end -}}
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
<div class="asides-box">
|
||||||
|
<aside>
|
||||||
|
{{ block "author-card" . }}
|
||||||
|
{{ partial "author-card.html" . }}
|
||||||
|
{{ end }}
|
||||||
|
</aside>
|
||||||
<nav>
|
<nav>
|
||||||
{{- block "content-menu" . -}}
|
{{- block "content-menu" . -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</div>
|
||||||
<section>
|
|
||||||
{{- block "content" . -}}
|
|
||||||
<!-- The part of the page that begins to differ between templates -->
|
|
||||||
{{ end }}
|
|
||||||
</section>
|
|
||||||
<footer>
|
|
||||||
{{- block "content-footer" . -}}
|
|
||||||
{{- end -}}
|
|
||||||
</footer>
|
|
||||||
<aside>
|
|
||||||
{{ block "author-card" . }}
|
|
||||||
{{ partial "author-card.html" . }}
|
|
||||||
{{ end }}
|
|
||||||
</aside>
|
|
||||||
</main>
|
</main>
|
||||||
<footer>
|
<footer>
|
||||||
{{- block "footer" . -}}
|
{{- block "footer" . -}}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
.box {
|
.box {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
|
@ -28,3 +29,27 @@ nav.paginator ul {
|
||||||
padding-inline-start: 1em;
|
padding-inline-start: 1em;
|
||||||
padding-inline-end: 1em;
|
padding-inline-end: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Define grid layout for wide screen browsers */
|
||||||
|
div.content-box {
|
||||||
|
grid-area: content;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.asides-box {
|
||||||
|
grid-area: aside;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 922px) {
|
||||||
|
div.asides-box {
|
||||||
|
max-width: 350px;
|
||||||
|
border-left: thin solid;
|
||||||
|
margin: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr 350px;
|
||||||
|
grid-template-areas:
|
||||||
|
"content aside";
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue