Skip to content

Commit

Permalink
Release v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oswaldoacauan committed Dec 8, 2013
1 parent e7f2600 commit 770dd24
Show file tree
Hide file tree
Showing 16 changed files with 127 additions and 51 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,25 @@
<a name="v1.2.0"></a>
## v1.2.0 (2013-12-08)


#### Bug Fixes

* Fix twitter card meta-tags data ([62753d6b](http://github.com/oswaldoacauan/ghostium/commit/62753d6bf6c84bd44c71da6df1d53680d2a2e368))
* **pjax:** Fix back/foward #1 ([0212b437](http://github.com/oswaldoacauan/ghostium/commit/0212b4370b9e02b0cc234c28b300f0c5b12dff2d))
* **scripts:** Fix not highlight without/invalid language ([8ab92557](http://github.com/oswaldoacauan/ghostium/commit/8ab92557ee5e782257658cc857c3363324b3c996))
* **templates:**
* Only show pagination if it exists ([4c777533](http://github.com/oswaldoacauan/ghostium/commit/4c77753341027ccd5d0230138ee988b62f59219a))
* Only show tags when have one ([e32e4f43](http://github.com/oswaldoacauan/ghostium/commit/e32e4f43ce4ded9766fe99d840e7fac97e0a95e0))
* Add missing [data-pjax] attributes ([fa869766](http://github.com/oswaldoacauan/ghostium/commit/fa86976689af771639b2b00edfed9a391c2d1a78))


#### Features

* Add FastClick plugin. Close #14 ([dc02d8ac](http://github.com/oswaldoacauan/ghostium/commit/dc02d8ac7a6644d0ac9e09c900d2297a22b05073))
* **drawer:** Completely new design #10 ([e97820be](http://github.com/oswaldoacauan/ghostium/commit/e97820beecaa3c1e2e633323c64eab078743aad1))
* **styles:** Add more author info on post. Close #18 ([c0e60856](http://github.com/oswaldoacauan/ghostium/commit/c0e6085665def13056478e75b78011d70cc168fb))
* **template:** Add a custom feature partial ([87b9d565](http://github.com/oswaldoacauan/ghostium/commit/87b9d56535c0a3ebe37c9a058f3503b7f8ecec9c))

<a name="v1.1.1"></a>
### v1.1.1 (2013-11-17)

Expand Down

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions assets/js/a942c422.foot-scripts.min.js

Large diffs are not rendered by default.

9 changes: 0 additions & 9 deletions assets/js/b785c374.foot-scripts.min.js

This file was deleted.

2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "ghostium",
"version": "1.1.1",
"version": "1.2.0",
"dependencies": {
"modernizr": "~2.6.2",
"jquery": "~2.0.3"
Expand Down
12 changes: 7 additions & 5 deletions default.hbs
Expand Up @@ -16,6 +16,8 @@
<meta name="description" content="{{meta_description}}">

<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="{{meta_title}}">
<meta name="twitter:description" content="{{meta_description}}">

<meta property="og:type" content="article">
<meta property="og:title" content="{{meta_title}}">
Expand All @@ -27,11 +29,11 @@
<link href="/apple-touch-icon-precomposed.png" rel="apple-touch-icon">

<link href="//fonts.googleapis.com/" rel="dns-prefetch">
<link href="//fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic|Open+Sans:700,400" rel="stylesheet">
<link href="//fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic|Open+Sans:700,400&subset=latin,latin-ext" rel="stylesheet">

<link rel="stylesheet" href="/assets/css/673ad9ab.main.min.css"/>
<link rel="stylesheet" href="/assets/css/ca73bfca.main.min.css"/>

<script src="/assets/js/e427151d.head-scripts.min.js"></script>
<script src="/assets/js/a03b5437.head-scripts.min.js"></script>

{{ghost_head}}
</head>
Expand All @@ -52,7 +54,7 @@

{{ghost_foot}}

<script src="/assets/js/b785c374.foot-scripts.min.js"></script>
<script src="/assets/js/a942c422.foot-scripts.min.js"></script>

<script type="text/javascript">
{{> custom/config}}
Expand All @@ -67,7 +69,7 @@
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = 'http://' + disqus_shortname + '.disqus.com/count.js';
s.src = '//' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>
Expand Down
8 changes: 6 additions & 2 deletions index.hbs
Expand Up @@ -4,7 +4,7 @@
<div {{#if @blog.cover}}data-load-image="{{@blog.cover}}"{{/if}} class="cover-image"></div>
<div class="cover-container">
{{#if @blog.logo}}
<a href="{{@blog.url}}" class="cover-logo">
<a href="{{@blog.url}}" class="cover-logo" data-pjax>
<img src="{{@blog.logo}}" alt="Blog Logo">
</a>
{{/if}}
Expand All @@ -15,13 +15,17 @@

<section class="wrapper">
<div class="wrapper-container">
{{> custom/featured this}}

<section class="post-list">
{{#foreach posts}}
{{> post/list this}}
{{/foreach}}
</section>

{{pagination}}
{{#if pagination}}
{{pagination}}
{{/if}}

{{> footer this}}
</div>
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "ghostium",
"version": "1.1.1",
"version": "1.2.0",
"description": "A Ghost theme focused on content based on Medium design/ux",
"url": "http://ghostium.oswaldoacauan.com/",
"copyright": "2013",
Expand Down
Empty file added partials/custom/featured.hbs
Empty file.
38 changes: 32 additions & 6 deletions partials/custom/navigation.hbs
@@ -1,20 +1,46 @@
{{! Template
{{! Templates
Link
==============
<li class="drawer-list-item">
<a href="#" title="My awesome menu link">
My menu link
<a href="#" title="Follow me on twitter!">
<i class="fa fa-twitter"></i> Follow me
</a>
</li>
Divider
==============
<li class="drawer-list-divider"></li>
Title
==============
<li class="drawer-list-item drawer-list-title">
Follow me
</li>
}}

<li class="drawer-list-item">
<a href="/">
<i class="fa fa-home fa-lg fa-fw"></i>Home
<a href="/" data-pjax>
<i class="fa fa-home"></i>Home
</a>
</li>
<li class="drawer-list-item">
<a href="{{@blog.url}}/rss/">
<i class="fa fa-rss fa-lg fa-fw"></i>Subscribe to Feed
<i class="fa fa-rss"></i>Subscribe to Feed
</a>
</li>
<li class="drawer-list-divider"></li>
<li class="drawer-list-item drawer-list-title">
Follow me
</li>
<li class="drawer-list-item">
<a href="http://twitter.com" target="_blank">
<i class="fa fa-twitter"></i>Twitter
</a>
</li>
<li class="drawer-list-item">
<a href="http://github.com" target="_blank">
<i class="fa fa-github"></i>Github
</a>
</li>
2 changes: 1 addition & 1 deletion partials/drawer.hbs
@@ -1,5 +1,5 @@
<button data-action="open-drawer" id="drawer-button" class="drawer-button"><i class="fa fa-bars"></i></button>
<nav tabindex="-1" class="drawer">
<button data-action="open-drawer" id="drawer-button" class="drawer-button"><i class="fa fa-bars"></i></button>
<div class="drawer-container">
<!--.drawer-search(role="search")-->
<ul role="navigation" class="drawer-list">
Expand Down
2 changes: 1 addition & 1 deletion partials/footer.hbs
@@ -1,5 +1,5 @@
<footer role="contentinfo" class="footer">
<p><small{{date format="YYYY"}}. All Rights Reserved.</small></p>
<p><small><a href="http://ghostium.oswaldoacauan.com/" target="_blank">Ghostium Theme</a> by <a href="http://twitter.com/oswaldoacauan" target="_blank">@oswaldoacauan</a></small></p>
<p><small>Proudly published with <a href="http://oswaldoacauan.com" target="_blank">Ghost</a></small></p>
<p><small>Proudly published with <a href="http://ghost.org" target="_blank">Ghost</a></small></p>
</footer>
4 changes: 2 additions & 2 deletions partials/pagination.hbs
@@ -1,12 +1,12 @@
<nav role="pagination" class="post-list-pagination">
{{#if prev}}
<a href="{{pageUrl prev}}" class="post-list-pagination-item post-list-pagination-item-prev">
<a href="{{pageUrl prev}}" class="post-list-pagination-item post-list-pagination-item-prev" data-pjax>
<i class="fa fa-angle-double-left"></i>&nbsp;Newer
</a>
{{/if}}
<span class="post-list-pagination-item post-list-pagination-item-current">Page {{page}} of {{pages}}</span>
{{#if next}}
<a href="{{pageUrl next}}" class="post-list-pagination-item post-list-pagination-item-next">
<a href="{{pageUrl next}}" class="post-list-pagination-item post-list-pagination-item-next" data-pjax>
Older&nbsp;<i class="fa fa-angle-double-right"></i>
</a>
{{/if}}
Expand Down
8 changes: 5 additions & 3 deletions partials/post/list.hbs
Expand Up @@ -17,13 +17,15 @@
{{date published_at timeago="true"}}
</time>
</li>
<li class="post-item-meta-item">on&nbsp;
{{#if tags}}
<li class="post-item-meta-item">
{{#foreach tags}}
<span itemprop="{{#if @first}}articleSection{{else}}keywords{{/if}}">{{name}}</span>
{{/foreach}}
</li>
</li>
{{/if}}
<li class="post-item-meta-item">
<a href="{{url}}#disqus_thread" data-disqus-identifier="{{id}}"></a>
<a href="{{url}}#disqus_thread" data-pjax data-disqus-identifier="{{id}}"></a>
</li>
</ul>
</footer>
Expand Down

0 comments on commit 770dd24

Please sign in to comment.