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