Compare commits
No commits in common. "master" and "1.0.4" have entirely different histories.
22
LICENSE.txt
22
LICENSE.txt
@ -1,22 +0,0 @@
|
||||
Copyright (c) 2014 Dmitry Lebedev - Released under The MIT License.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person
|
||||
obtaining a copy of this software and associated documentation
|
||||
files (the "Software"), to deal in the Software without
|
||||
restriction, including without limitation the rights to use,
|
||||
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following
|
||||
conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
OTHER DEALINGS IN THE SOFTWARE.
|
@ -7,7 +7,6 @@
|
||||
--title: #f28322;
|
||||
--post-title: #a7adba;
|
||||
--border: #424650;
|
||||
--figcaption: #9EABB3;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
@ -84,11 +83,6 @@ h5 a,
|
||||
h6 a {
|
||||
color: var(--post-title)
|
||||
}
|
||||
.blog-title {
|
||||
font-size:5rem;
|
||||
letter-spacing:-1px;
|
||||
text-align:center;
|
||||
}
|
||||
a {
|
||||
color: var(--link);
|
||||
-webkit-transition:color ease 0.3s;
|
||||
@ -262,9 +256,6 @@ textarea {
|
||||
color: var(--text);
|
||||
outline-color: var(--link)
|
||||
}
|
||||
.nav {
|
||||
margin:0;
|
||||
}
|
||||
.site-nav ul {
|
||||
padding:0
|
||||
}
|
||||
@ -278,15 +269,6 @@ textarea {
|
||||
.post-header .site-nav {
|
||||
text-align:center
|
||||
}
|
||||
.site-nav {
|
||||
overflow: hidden;
|
||||
}
|
||||
.site-nav-left {
|
||||
float: left;
|
||||
}
|
||||
.site-nav-right {
|
||||
float: right;
|
||||
}
|
||||
.hidden {
|
||||
text-indent:-9999px;
|
||||
visibility:hidden;
|
||||
@ -508,7 +490,6 @@ textarea {
|
||||
.blog-title {
|
||||
font-size:4rem;
|
||||
letter-spacing:-1px;
|
||||
text-align:center;
|
||||
}
|
||||
.blog-description {
|
||||
font-size:1.7rem;
|
||||
@ -556,8 +537,7 @@ textarea {
|
||||
padding:10% 0
|
||||
}
|
||||
.blog-title {
|
||||
font-size:3rem;
|
||||
text-align:center;
|
||||
font-size:3rem
|
||||
}
|
||||
.blog-description {
|
||||
font-size:1.5rem
|
||||
@ -638,14 +618,11 @@ textarea {
|
||||
.post-full-content figure img {
|
||||
margin:0
|
||||
}
|
||||
.post-content figcaption {
|
||||
margin:1.0em auto;
|
||||
width: 80%;
|
||||
font-size:70%;
|
||||
font-style: italic;
|
||||
.post-full-content figcaption {
|
||||
margin:1.0em 0 0;
|
||||
font-size:80%;
|
||||
line-height:1.6em;
|
||||
text-align:center;
|
||||
color: var(--figcaption);
|
||||
text-align:center
|
||||
}
|
||||
.kg-width-full figcaption {
|
||||
padding:0 1.5em
|
||||
|
@ -1,5 +1,5 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<html>
|
||||
<head>
|
||||
{{! Document Settings }}
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
|
||||
|
@ -1,6 +1,7 @@
|
||||
<header id="site-head" {{#if @site.cover_image}}style="background-image: url({{@site.cover_image}})"{{/if}}>
|
||||
<div class="">
|
||||
<div id="site-head-content" class="inner">
|
||||
|
||||
{{> "site-nav"}}
|
||||
<h1 class="blog-title">{{@site.title}}</h1>
|
||||
</div>
|
||||
|
@ -4,9 +4,4 @@
|
||||
{{navigation}}
|
||||
{{/if}}
|
||||
</div>
|
||||
<div class="site-nav-right">
|
||||
{{#if @site.secondary_navigation}}
|
||||
{{navigation type="secondary"}}
|
||||
{{/if}}
|
||||
</div>
|
||||
</nav>
|
||||
|
7
post.hbs
7
post.hbs
@ -14,12 +14,7 @@
|
||||
{{#post}}
|
||||
|
||||
{{! Everything below outputs content of the the post which has been published }}
|
||||
<span class="post-meta"><time datetime="{{date format="YYYY-MM-DD"}}">{{date format='DD MMM YYYY' locale="fr-fr"}}</time>
|
||||
{{#if tags}}dans {{tags separator=" | "}}{{/if}}<br />
|
||||
{{#if updated_at}}
|
||||
<time datetime="{{date format="YYYY-MM-DD"}}"> ➡ Mise à jour {{date updated_at format='DD MMM YYYY' locale="fr-fr"}}</time>
|
||||
{{/if}}
|
||||
</span>
|
||||
<span class="post-meta"><time datetime="{{date format="YYYY-MM-DD"}}">{{date format='DD MMM YYYY' locale="fr-fr"}}</time> {{#if tags}}dans {{tags separator=" | "}}{{/if}}</span>
|
||||
|
||||
<h2 class="post-title">{{{title}}}</h2>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user