yefeme 0.5.2 → 0.5.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4e46efd39390ee89b5f935f3314212002b3d6a8ce01339551f8a88e131baf27f
4
- data.tar.gz: 4a8e72e0299e6e38be1cbd221ba248533598105f19737db2d76ed8f75be5af0b
3
+ metadata.gz: 2a407883f304ab8bae4113570fac7aae3fc902ac4d1e34b23e30a0a9cbe7c852
4
+ data.tar.gz: f1d76c9b31146d9c221ade91f4dd711bebf8fcb6ba2b0c8e03ad3cb05f3c6041
5
5
  SHA512:
6
- metadata.gz: 5ca38e2f0084f48e603d6742ac13bb6103dba99adbcf3acc29f6df08b2c1818ff44453633fcf8cbc8851fb03681d1329feb3a6989c45e21062c8036ef4f940bd
7
- data.tar.gz: 83c78b2fd0ee36b19d941d5358359b914730ae3eb2b12a53e52939907cff976b338347fde0d11ba587c478fe59b7304ce880987fdf9f6434012f49389c7a2f15
6
+ metadata.gz: b61ae17b83d8263717745c79358be8447d60fcf2d95ec279b89505cb1511c40baa8ae0c3f84beb3a26cedad3bf70916f3248d11f11a3377642ddcf0e6ab01997
7
+ data.tar.gz: 3114fa13bd4b2b5ff729ea9bbf727ba19c09ca083ad05785766528251b814d1044ab3a96d286724cb237567cef983b4daf07a8cb154f5c32279a6bf51213e033
data/README.md CHANGED
@@ -33,8 +33,8 @@ description: [A short description of your site's purpose]
33
33
  url: [URL of your site]
34
34
  lang: [Language of your site]
35
35
  email: [Your email]
36
- twitter: [Your Twitter handle]
37
- github: [Your GitHub handle]
36
+ twitter_username: [Your Twitter handle]
37
+ github_username: [Your GitHub handle]
38
38
  ```
39
39
 
40
40
  ## Contributing
data/_includes/head.html CHANGED
@@ -20,8 +20,8 @@
20
20
  <meta property="article:published_time" content="{{ page.date | date_to_xmlschema }}">
21
21
  {% endif %}
22
22
 
23
- {% if site.twitter %}
24
- <meta name="twitter:site" content="@{{ site.twitter }}">
23
+ {% if site.twitter_username %}
24
+ <meta name="twitter:site" content="@{{ site.twitter_username }}">
25
25
  {% endif %}
26
26
 
27
27
  <link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="{{ include.width }}" height="{{ include.height }}" viewBox="0 0 103 136">
2
+ <path fill="#F22939" fill-rule="evenodd" d="M0 0v6.663h2.352c5.29 0 8.034 3.331 9.406 6.27L49.97 94.26c-3.135 8.623-9.798 29.003-16.657 29.003-3.331 0-3.331-3.723-3.527-5.879-.392-6.859-5.095-11.17-12.542-11.17-8.035 0-12.934 6.075-12.934 13.326C4.311 126.594 9.798 136 23.32 136c14.697 0 22.536-9.994 32.138-34.686L83.09 30.571C92.3 7.055 93.476 6.663 98.963 6.663h3.527V0H67.608v6.663h3.92c2.351 0 6.858.588 6.858 6.27 0 7.447-5.879 24.3-7.838 29.591l-9.015 24.3-23.516-53.89c-1.371-3.332-.196-6.271 3.332-6.271h5.29V0H0z"/>
3
+ </svg>
data/_layouts/home.html CHANGED
@@ -4,16 +4,14 @@ layout: default
4
4
 
5
5
  <header>
6
6
  <div class="logo logo-closer-to-top-on-mobile">
7
- <svg xmlns="http://www.w3.org/2000/svg" width="103" height="136" viewBox="0 0 103 136">
8
- <path fill="#F22939" fill-rule="evenodd" d="M0 0v6.663h2.352c5.29 0 8.034 3.331 9.406 6.27L49.97 94.26c-3.135 8.623-9.798 29.003-16.657 29.003-3.331 0-3.331-3.723-3.527-5.879-.392-6.859-5.095-11.17-12.542-11.17-8.035 0-12.934 6.075-12.934 13.326C4.311 126.594 9.798 136 23.32 136c14.697 0 22.536-9.994 32.138-34.686L83.09 30.571C92.3 7.055 93.476 6.663 98.963 6.663h3.527V0H67.608v6.663h3.92c2.351 0 6.858.588 6.858 6.27 0 7.447-5.879 24.3-7.838 29.591l-9.015 24.3-23.516-53.89c-1.371-3.332-.196-6.271 3.332-6.271h5.29V0H0z"/>
9
- </svg>
7
+ {% include logo.svg width=103 height=136 %}
10
8
  <div class="under under-large">
11
9
  <h1><em>{{ site.title | escape }}</em></h1>
12
10
  <div class="social">
13
- <a aria-label="Twitter" class="accent" href="https://twitter.com/{{ site.twitter }}">
11
+ <a aria-label="Twitter" class="accent" href="https://twitter.com/{{ site.twitter_username }}">
14
12
  {% include twitter.svg %}
15
13
  </a><!--
16
- --><a aria-label="GitHub" class="accent" href="https://github.com/{{ site.github }}">
14
+ --><a aria-label="GitHub" class="accent" href="https://github.com/{{ site.github_username }}">
17
15
  {% include github.svg %}
18
16
  </a><!--
19
17
  --><a aria-label="Email (opens mail client)" class="accent make-mail-smaller" href="mailto:{{ site.email }}">
data/_layouts/post.html CHANGED
@@ -4,8 +4,7 @@ layout: default
4
4
 
5
5
  <header>
6
6
  <div class="logo">
7
- <svg xmlns="http://www.w3.org/2000/svg" width="46" height="61" viewBox="0 0 103 136">
8
- <path fill="#F22939" fill-rule="evenodd" d="M0 0v6.663h2.352c5.29 0 8.034 3.331 9.406 6.27L49.97 94.26c-3.135 8.623-9.798 29.003-16.657 29.003-3.331 0-3.331-3.723-3.527-5.879-.392-6.859-5.095-11.17-12.542-11.17-8.035 0-12.934 6.075-12.934 13.326C4.311 126.594 9.798 136 23.32 136c14.697 0 22.536-9.994 32.138-34.686L83.09 30.571C92.3 7.055 93.476 6.663 98.963 6.663h3.527V0H67.608v6.663h3.92c2.351 0 6.858.588 6.858 6.27 0 7.447-5.879 24.3-7.838 29.591l-9.015 24.3-23.516-53.89c-1.371-3.332-.196-6.271 3.332-6.271h5.29V0H0z"/>
7
+ {% include logo.svg width=46 height=61 %}
9
8
  </svg>
10
9
  <div class="under under-small">
11
10
  <h2 itemprop="name headline"><em>{{ page.title | escape }}</em></h2>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yefeme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yefim Vedernikoff
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-02-25 00:00:00.000000000 Z
11
+ date: 2018-03-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -64,6 +64,7 @@ files:
64
64
  - _includes/email.svg
65
65
  - _includes/github.svg
66
66
  - _includes/head.html
67
+ - _includes/logo.svg
67
68
  - _includes/twitter.svg
68
69
  - _layouts/default.html
69
70
  - _layouts/home.html