Skip to content

Commit

Permalink
made ghost v1.0 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanSpeek committed Aug 20, 2017
1 parent 6adbf3c commit 7b34f21
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion author.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{{#author}}
<div class="row" id="main">
<div align="center" class="space-1">
{{#if image}}<img src="{{image}}" alt="{{name}}'s Picture"/>{{/if}}
{{#if profile_image}}<img src="{{profile_image}}" alt="{{name}}'s Picture"/>{{/if}}
<h1 class="blog-main-title">{{name}}</h1>
<h3 class="blog-description">{ {{location}} }</h3>
<p>
Expand Down
1 change: 0 additions & 1 deletion default.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
<link rel="favicon" href="{{asset '/favicon.ico'}}">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width"/>
<meta name="description" content="{{meta_description}}">
<link rel="stylesheet" type="text/css" href="{{asset '/styles/spacegrid.css'}}">
<link rel="stylesheet" type="text/css" media="screen" href="{{asset '/styles/main.css'}}">{{!-- scripts --}}
<script type="text/javascript" src="{{asset '/scripts/jquery.js'}}"></script>
Expand Down
4 changes: 2 additions & 2 deletions index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
{{#foreach posts}}
<article id="{{id}}" class="{{post_class}}">
<div align="center">
{{#if image}}
<a href="{{url}}"><img class="blog-main-photo" src="{{image}}"/></a>
{{#if feature_image}}
<a href="{{url}}"><img class="blog-main-photo" src="{{img_url feature_image}}"/></a>
{{/if}}
<div align="center">
<time class="blog-subtitle" datetime="{{date format="YYYY-MM-DD"}}">{{date published_at
Expand Down
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"name": "Spacegrid",
"version": "0.0.1"
"name": "spacegrid",
"version": "0.0.1",
"author": {
"email": "[email protected]"
}
}
4 changes: 2 additions & 2 deletions post.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<div class="blog-body">
<article id="{{id}}" class="{{post_class}}">
<div align="center">
{{#if image}}
<a href="{{url}}"><img class="blog-main-photo" src="{{image}}"/></a>
{{#if feature_image}}
<a href="{{url}}"><img class="blog-main-photo" src="{{img_url feature_image}}"/></a>
{{/if}}
<p class="code-text" id="meta-text">
<time datetime="{{date format="YYYY-MM-DD"}}">{{date published_at format='Do MMMM YYYY'}}</time>
Expand Down

0 comments on commit 7b34f21

Please sign in to comment.