Added first additions, in temp state
This commit is contained in:
parent
03a921110f
commit
3269d2b65c
@ -1089,7 +1089,6 @@ button {
|
|||||||
height: auto;
|
height: auto;
|
||||||
min-height: 240px;
|
min-height: 240px;
|
||||||
height: 60vh;
|
height: 60vh;
|
||||||
padding: 15% 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.scroll-down,
|
.scroll-down,
|
||||||
|
@ -124,6 +124,13 @@ a {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.main-me {
|
||||||
|
background-color: red; //Temp
|
||||||
|
color: $white;
|
||||||
|
margin: 10rem auto 15rem;
|
||||||
|
max-width: 1260px;
|
||||||
|
}
|
||||||
|
|
||||||
$post-bg: $white;
|
$post-bg: $white;
|
||||||
$post-border: #ebf2f6;
|
$post-border: #ebf2f6;
|
||||||
$post-after-border: #e7eef2;
|
$post-after-border: #e7eef2;
|
||||||
|
13
index.hbs
13
index.hbs
@ -3,11 +3,8 @@
|
|||||||
|
|
||||||
{{!-- The big featured header --}}
|
{{!-- The big featured header --}}
|
||||||
<header class="main-header">
|
<header class="main-header">
|
||||||
<div class="vertical">
|
<div class="main-me">
|
||||||
<div class="main-header-content inner">
|
hey
|
||||||
<h1 class="page-title">{{@blog.title}}</h1>
|
|
||||||
<h2 class="page-description">{{@blog.description}}</h2>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<a class="scroll-down icon-arrow-left" href="#content"><span class="hidden">Scroll Down</span></a>
|
<a class="scroll-down icon-arrow-left" href="#content"><span class="hidden">Scroll Down</span></a>
|
||||||
</header>
|
</header>
|
||||||
@ -15,6 +12,12 @@
|
|||||||
{{!-- The main content area on the homepage --}}
|
{{!-- The main content area on the homepage --}}
|
||||||
<main id="content" class="content" role="main">
|
<main id="content" class="content" role="main">
|
||||||
|
|
||||||
|
{{#get "tags" limit="all"}}
|
||||||
|
{{#foreach tags}}
|
||||||
|
<p>{{name}}</p>
|
||||||
|
{{/foreach}}
|
||||||
|
{{/get}}
|
||||||
|
|
||||||
{{!-- The tag below includes the post loop - partials/loop.hbs --}}
|
{{!-- The tag below includes the post loop - partials/loop.hbs --}}
|
||||||
{{> "loop"}}
|
{{> "loop"}}
|
||||||
|
|
||||||
|
@ -1 +0,0 @@
|
|||||||
|
|
Loading…
Reference in New Issue
Block a user