Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions dev/assets/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

$(document).ready(function(){
// Push down the blog at the beginning.
var home = $('.home-template');
var centered = $('.v-center');
var home = $('.home-template, .paged');
var centered = $('.home-template .v-center');
var homeContent = $('.content');
var t;

Expand Down Expand Up @@ -72,4 +72,4 @@
}
});

}(jQuery));
}(jQuery));
5 changes: 3 additions & 2 deletions dev/assets/less/header.less
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.post-template,
.paged,
.page-template,
.archive-template,
.author-template,
Expand Down Expand Up @@ -96,7 +97,7 @@
}
}

.home-template {
.home-template, .paged {

#header {

Expand Down Expand Up @@ -146,7 +147,7 @@
}
}

.home-template {
.home-template, .paged {

#header {

Expand Down
13 changes: 9 additions & 4 deletions dev/assets/less/home.less
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
.home-template,
.paged,
.archive-template,
.tag-template,
.author-template {
background-color: #0a0a1e;
background-color: #000000;

canvas {
display: block;
Expand Down Expand Up @@ -74,9 +75,13 @@
display: none;
}

.paged .content {
display: none;
}

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
.home-template {
.home-template, .paged {

.description {
padding: 30px 0 50px;
Expand All @@ -102,7 +107,7 @@

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
.home-template {
.home-template, .paged {

.description {

Expand All @@ -116,7 +121,7 @@

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
.home-template {
.home-template, .paged {

.description {
padding-bottom: 80px;
Expand Down
6 changes: 3 additions & 3 deletions dev/assets/less/main.less
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@import url(http://fonts.googleapis.com/css?family=Exo+2:400,700);
@import url(http://code.ionicframework.com/ionicons/1.5.2/css/ionicons.min.css);
@import url(https://fonts.googleapis.com/css?family=Exo+2:400,700);
@import url(https://code.ionicframework.com/ionicons/1.5.2/css/ionicons.min.css);

/* Import Less dependencies. */
@import "variables";
Expand Down Expand Up @@ -85,4 +85,4 @@ canvas {
100% {
opacity: 1;
}
}
}
2 changes: 1 addition & 1 deletion dev/post.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

{{#if author}}
<section class="author">
<div class="authorimage" style="background: url({{author.image}})"></div>
<div class="authorimage" style="background: url({{author.profile_image}})"></div>
<p class="attr">Author:</p>
<h4><a href="{{author.website}}">{{author.name}}</a></h4>
<p class="bio">{{author.bio}}</p>
Expand Down