Compare commits

...

6 Commits
0.2.0 ... 0.3.0

Author SHA1 Message Date
87e772c268 Merge pull request #18 from cobbspur/date
helper name changes for casper
2013-08-22 13:54:45 -07:00
7214380abd helper name changes for casper
closes #17

- changed pagination and date in handlebars templates
2013-08-22 21:45:00 +01:00
cebd42fc51 Removing accidental commit 2013-08-07 12:06:16 +01:00
0c94300d4a Casper now displays logo if one is uploaded 2013-08-06 22:17:58 +01:00
ad877308d4 Replacing weird svg font file with the original and correct file 2013-07-27 14:22:45 +01:00
16d9029acc Ghost id in css causes errors
- fixes #265
- I've just removed this css as I can't see anywhere in casper where it will be needed.
- Using id's in theme css should be pretty much banned, or always tightly scoped away from the content so as not to clash with markdown
2013-07-14 17:16:04 +01:00
6 changed files with 246 additions and 859 deletions

View File

@ -361,31 +361,6 @@ body > header {
background-size: 10px;
}
#ghost {
display: block;
height:30px;
width:30px;
text-indent: -9999px;
position: absolute;
z-index: 999;
top: 10px;
left:10px;
background:rgba(0,0,0,0.1) url(../img/ghost.png) 8px 8px no-repeat;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
transition: all 0.3s;
}
#ghost:hover {
background-color:rgba(0,0,0,0.3);
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
transition: all 0.3s;
}
/* ==========================================================================
5. Post Content
========================================================================== */

View File

@ -10,6 +10,7 @@
</head>
<body>
<header>
{{#if settings.logo}}<a id="logo" href="/"><img src="{{settings.logo}}" alt="Logo"></a>{{/if}}
<a id="title" href="/">{{settings.title}}</a>
<p id="description">{{settings.description}}</p>
<div class="clearfix"></div>

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 46 KiB

View File

@ -11,5 +11,5 @@
{{/if}}
{{/foreach}}
</ul>
{{paginate}}
{{pagination}}
</section>

View File

@ -7,7 +7,7 @@
<div class="wrap">
<header>
<h2 class="entry-title h1"><a href="/{{slug}}" rel="bookmark">{{title}}</a></h2>
<span class="entry-meta">Published on <time class="updated" datetime="{{dateFormat published_at format='YYYY-MM-DD'}}">{{dateFormat published_at format='DD MMMM YYYY'}}</time></span>
<span class="entry-meta">Published on <time class="updated" datetime="{{date published_at format='YYYY-MM-DD'}}">{{date published_at format='DD MMMM YYYY'}}</time></span>
</header>
<section class="entry-content">

View File

@ -1,6 +1,6 @@
<li class="wrap">
<article class="post type-post status-publish format-standard hentry">
<h2 class="entry-title"><a href="/{{slug}}" rel="bookmark">{{title}}</a></h2>
<time class="updated" datetime="2012-05-03">{{dateFormat published_at format="MMMM DD, YYYY"}}</time>
<time class="updated" datetime="2012-05-03">{{date published_at format="MMMM DD, YYYY"}}</time>
</article>
</li>