Update blog rendering to h1 the title (not h2)
This commit is contained in:
parent
bed9a74b58
commit
78a7d4deea
File diff suppressed because one or more lines are too long
@ -22,6 +22,12 @@ body {
|
||||
max-width: 980px;
|
||||
margin: 0px auto;
|
||||
padding: 20px;
|
||||
.hero {
|
||||
h1, .h1 {
|
||||
color: #fff;
|
||||
line-height: 1em;
|
||||
}
|
||||
}
|
||||
@include breakpoint(small) {
|
||||
max-width: 100%;
|
||||
}
|
||||
@ -42,10 +48,10 @@ body {
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-weight: 300;
|
||||
}
|
||||
h1 {
|
||||
h1, .h1 {
|
||||
font-size: 36px;
|
||||
}
|
||||
h2 {
|
||||
h2, .h2 {
|
||||
font-size: 28px;
|
||||
}
|
||||
h3 {
|
||||
|
@ -36,7 +36,7 @@ pre.chroma {
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
h2 {
|
||||
h2, .h2 {
|
||||
font-size: 36px;
|
||||
}
|
||||
&.homepage {
|
||||
|
@ -3,12 +3,12 @@
|
||||
<article>
|
||||
<div class="hero subpage">
|
||||
<div class="wrapper">
|
||||
<h1>Pinniped blog</h1>
|
||||
<h2 class="h1">Pinniped blog</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wrapper blog">
|
||||
<div class="blog-post">
|
||||
<h2>{{ .Title }}</h2>
|
||||
<h1 class="h2">{{ .Title }}</h1>
|
||||
{{ partial "authors" .}}
|
||||
<p class="date">{{ dateFormat "Jan 2, 2006" .Date }}</p>
|
||||
{{ .Content }}
|
||||
|
Loading…
Reference in New Issue
Block a user