mirror of
https://github.com/GenZmeY/casper-i18n.git
synced 2025-07-13 09:16:06 +00:00
Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
87e772c268 | |||
7214380abd | |||
cebd42fc51 | |||
0c94300d4a | |||
ad877308d4 | |||
16d9029acc | |||
8990d7598d | |||
97a24a07fb | |||
09295abe40 | |||
e40d3e2680 | |||
cffc941b6b | |||
5d770ffe10 | |||
93072a6d9b | |||
229ab70899 |
@ -1,4 +1,4 @@
|
|||||||
# Casper v0.1.1
|
# Casper v0.2.0
|
||||||
|
|
||||||
The default theme for [Ghost](http://github.com/tryghost/ghost/).
|
The default theme for [Ghost](http://github.com/tryghost/ghost/).
|
||||||
|
|
||||||
|
@ -361,31 +361,6 @@ body > header {
|
|||||||
background-size: 10px;
|
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
|
5. Post Content
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
{{#if settings.logo}}<a id="logo" href="/"><img src="{{settings.logo}}" alt="Logo"></a>{{/if}}
|
||||||
<a id="title" href="/">{{settings.title}}</a>
|
<a id="title" href="/">{{settings.title}}</a>
|
||||||
<p id="description">{{settings.description}}</p>
|
<p id="description">{{settings.description}}</p>
|
||||||
<div class="clearfix"></div>
|
<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 |
@ -11,5 +11,5 @@
|
|||||||
{{/if}}
|
{{/if}}
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
</ul>
|
</ul>
|
||||||
|
{{pagination}}
|
||||||
</section>
|
</section>
|
||||||
|
@ -7,11 +7,11 @@
|
|||||||
<div class="wrap">
|
<div class="wrap">
|
||||||
<header>
|
<header>
|
||||||
<h2 class="entry-title h1"><a href="/{{slug}}" rel="bookmark">{{title}}</a></h2>
|
<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>
|
</header>
|
||||||
|
|
||||||
<section class="entry-content">
|
<section class="entry-content">
|
||||||
{{{content_html}}}
|
{{content}}
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
</article>
|
</article>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<li class="wrap">
|
<li class="wrap">
|
||||||
<article class="post type-post status-publish format-standard hentry">
|
<article class="post type-post status-publish format-standard hentry">
|
||||||
<h2 class="entry-title"><a href="/{{slug}}" rel="bookmark">{{title}}</a></h2>
|
<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>
|
</article>
|
||||||
</li>
|
</li>
|
Reference in New Issue
Block a user