Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
9dfcb37299 | |||
e175175f03 | |||
c93c551b2e | |||
ab604ab2ee | |||
d5e2cc15b3 | |||
13430eed48 | |||
22cc4625a4 |
22
LICENSE.txt
Executable file
22
LICENSE.txt
Executable file
@ -0,0 +1,22 @@
|
|||||||
|
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,6 +7,7 @@
|
|||||||
--title: #f28322;
|
--title: #f28322;
|
||||||
--post-title: #a7adba;
|
--post-title: #a7adba;
|
||||||
--border: #424650;
|
--border: #424650;
|
||||||
|
--figcaption: #9EABB3;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
@ -83,6 +84,11 @@ h5 a,
|
|||||||
h6 a {
|
h6 a {
|
||||||
color: var(--post-title)
|
color: var(--post-title)
|
||||||
}
|
}
|
||||||
|
.blog-title {
|
||||||
|
font-size:5rem;
|
||||||
|
letter-spacing:-1px;
|
||||||
|
text-align:center;
|
||||||
|
}
|
||||||
a {
|
a {
|
||||||
color: var(--link);
|
color: var(--link);
|
||||||
-webkit-transition:color ease 0.3s;
|
-webkit-transition:color ease 0.3s;
|
||||||
@ -256,6 +262,9 @@ textarea {
|
|||||||
color: var(--text);
|
color: var(--text);
|
||||||
outline-color: var(--link)
|
outline-color: var(--link)
|
||||||
}
|
}
|
||||||
|
.nav {
|
||||||
|
margin:0;
|
||||||
|
}
|
||||||
.site-nav ul {
|
.site-nav ul {
|
||||||
padding:0
|
padding:0
|
||||||
}
|
}
|
||||||
@ -499,6 +508,7 @@ textarea {
|
|||||||
.blog-title {
|
.blog-title {
|
||||||
font-size:4rem;
|
font-size:4rem;
|
||||||
letter-spacing:-1px;
|
letter-spacing:-1px;
|
||||||
|
text-align:center;
|
||||||
}
|
}
|
||||||
.blog-description {
|
.blog-description {
|
||||||
font-size:1.7rem;
|
font-size:1.7rem;
|
||||||
@ -546,7 +556,8 @@ textarea {
|
|||||||
padding:10% 0
|
padding:10% 0
|
||||||
}
|
}
|
||||||
.blog-title {
|
.blog-title {
|
||||||
font-size:3rem
|
font-size:3rem;
|
||||||
|
text-align:center;
|
||||||
}
|
}
|
||||||
.blog-description {
|
.blog-description {
|
||||||
font-size:1.5rem
|
font-size:1.5rem
|
||||||
@ -627,11 +638,14 @@ textarea {
|
|||||||
.post-full-content figure img {
|
.post-full-content figure img {
|
||||||
margin:0
|
margin:0
|
||||||
}
|
}
|
||||||
.post-full-content figcaption {
|
.post-content figcaption {
|
||||||
margin:1.0em 0 0;
|
margin:1.0em auto;
|
||||||
font-size:80%;
|
width: 80%;
|
||||||
|
font-size:70%;
|
||||||
|
font-style: italic;
|
||||||
line-height:1.6em;
|
line-height:1.6em;
|
||||||
text-align:center
|
text-align:center;
|
||||||
|
color: var(--figcaption);
|
||||||
}
|
}
|
||||||
.kg-width-full figcaption {
|
.kg-width-full figcaption {
|
||||||
padding:0 1.5em
|
padding:0 1.5em
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html lang="fr">
|
||||||
<head>
|
<head>
|
||||||
{{! Document Settings }}
|
{{! Document Settings }}
|
||||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
|
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
<header id="site-head" {{#if @site.cover_image}}style="background-image: url({{@site.cover_image}})"{{/if}}>
|
<header id="site-head" {{#if @site.cover_image}}style="background-image: url({{@site.cover_image}})"{{/if}}>
|
||||||
<div class="">
|
<div class="">
|
||||||
<div id="site-head-content" class="inner">
|
<div id="site-head-content" class="inner">
|
||||||
|
|
||||||
{{> "site-nav"}}
|
{{> "site-nav"}}
|
||||||
<h1 class="blog-title">{{@site.title}}</h1>
|
<h1 class="blog-title">{{@site.title}}</h1>
|
||||||
</div>
|
</div>
|
||||||
|
7
post.hbs
7
post.hbs
@ -14,7 +14,12 @@
|
|||||||
{{#post}}
|
{{#post}}
|
||||||
|
|
||||||
{{! Everything below outputs content of the the post which has been published }}
|
{{! 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}}</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}}<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>
|
||||||
|
|
||||||
<h2 class="post-title">{{{title}}}</h2>
|
<h2 class="post-title">{{{title}}}</h2>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user