Skip to content
This repository has been archived by the owner on Nov 20, 2019. It is now read-only.

Commit

Permalink
Fixes for compatibility with Ghost release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelSchmidle committed Aug 25, 2017
1 parent ceed683 commit b256eea
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# About inhabitu
# About Inhabitu

inhabitu is a single-column theme for the [Ghost publishing platform](https://ghost.org). It was developed for the [ypertex blog](https://blog.ypertex.com). The name inhabitu comes from the latin expression “in habitu” and means “in disguise”—what an interface theme esentially is there for: to disguise it.

# Compatibility to Ghost Releases

Known compatibility limitations between [inhabitu releases](https://github.com/ypertex/inhabitu/releases) and Ghost versions are specified per release.

# Attribution

The theme inhabitu is based on the [CSS framework Bulma](http://bulma.io).
Expand All @@ -10,7 +14,7 @@ The theme inhabitu is based on the [CSS framework Bulma](http://bulma.io).

**This theme is heavily customized for use on the [ypertex blog](https://blog.ypertex.com). It is not recommended to directly use it on your productive Ghost instance without prior customization to your own blog.**

# Known issues
# Known Issues

Please check out the list of [issues documented at Github](https://github.com/ypertex/inhabitu/issues).

Expand Down
2 changes: 1 addition & 1 deletion author.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div class="card-content">
<div class="media">
<figure class="media-left image is-64x64">
<img src="{{image}}" style="border-radius:100%">
<img src="{{img_url profile_image}}" style="border-radius:100%">
</figure>
<div class="media-content">
<strong>{{name}}</strong>
Expand Down
2 changes: 1 addition & 1 deletion partials/post-index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="level-left">
<div class="media level-item">
<figure class="media-left image is-32x32">
<img src="{{author.image}}" style="border-radius:100%">
<img src="{{author.profile_image}}" style="border-radius:100%">
</figure>
<small class="media-content">
<strong>{{author}}</strong>
Expand Down
2 changes: 1 addition & 1 deletion partials/post.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="level-left">
<div class="media level-item">
<figure class="media-left image is-32x32">
<img src="{{author.image}}" style="border-radius:100%">
<img src="{{author.profile_image}}" style="border-radius:100%">
</figure>
<small class="media-content">
<strong>{{author}}</strong>
Expand Down

0 comments on commit b256eea

Please sign in to comment.