wunsh-theme 0.1.10 → 0.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_includes/modals.html +1 -1
- data/_includes/tags_page.html +2 -2
- data/_layouts/post.html +1 -1
- data/_sass/_helpers.scss +8 -4
- data/_sass/_main.scss +7 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 99851cc5402665665906102fb5788bea9aea0778
|
|
4
|
+
data.tar.gz: b23258d1bb6d1bc6daca9314cb2b74c87b40e719
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 99bea8236a7a05830228bb35640a0bf8a21244beb10c4b5f2f1ed2946968dd86458c9e9049463fbf13c8c6460820d6a5c8519ccf0a4048c85c9c0c0501b53a0c
|
|
7
|
+
data.tar.gz: 4b68f897a7a68cfec04cf1525b98230566f3b04efa7cbd8ad914e21f2b32360c4c2e12af0d9aff8a685d47ca484194f60253217da46ea32b274a90ede6ef2031
|
data/_includes/modals.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
<p>Один-два раза в неделю присылаем тёплые письма об Эликсире: переводы самых интересных статей до их появления в открытом доступе, анонсы событий и вкусные бонусы.</p>
|
|
8
8
|
|
|
9
|
-
<form action="//wunsh.us14.list-manage.com/subscribe/post?u=c81ca3d4693f62db7f7f67c71&id=a192e2dfef" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="pure-form tc validate" target="_blank" novalidate>
|
|
9
|
+
<form action="//wunsh.us14.list-manage.com/subscribe/post?u=c81ca3d4693f62db7f7f67c71&id=a192e2dfef" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="pure-form h-tc validate" target="_blank" novalidate>
|
|
10
10
|
<input type="email" value="" name="EMAIL" class="modal__input pure-input-rounded large" id="mce-EMAIL" placeholder="Твоя почта" required>
|
|
11
11
|
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_c81ca3d4693f62db7f7f67c71_a192e2dfef" tabindex="-1" value=""></div>
|
|
12
12
|
|
data/_includes/tags_page.html
CHANGED
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
|
|
6
6
|
{% for tag in tags %}
|
|
7
7
|
<h2 id="{{ tag | slugify }}" class="tag tag--{{ tag }}">{{ tag }}</h2>
|
|
8
|
-
<ul class="simple_list">
|
|
8
|
+
<ul class="h-simple_list">
|
|
9
9
|
{% for post in site.tags[tag] %}
|
|
10
10
|
<li>
|
|
11
|
-
<a href="{{ post.url }}" class="simple_link">{{ post.title }}</a>
|
|
11
|
+
<a href="{{ post.url }}" class="h-simple_link">{{ post.title }}</a>
|
|
12
12
|
</li>
|
|
13
13
|
{% endfor %}
|
|
14
14
|
</ul>
|
data/_layouts/post.html
CHANGED
data/_sass/_helpers.scss
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
.responsive_image {
|
|
1
|
+
.h-responsive_image {
|
|
2
2
|
max-width: 100%;
|
|
3
3
|
height: auto;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
-
.simple_link {
|
|
6
|
+
.h-simple_link {
|
|
7
7
|
color: $text-color;
|
|
8
8
|
text-decoration: underline;
|
|
9
9
|
|
|
@@ -13,9 +13,13 @@
|
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
.simple_list {
|
|
16
|
+
.h-simple_list {
|
|
17
17
|
list-style: none;
|
|
18
18
|
padding-left: 1em;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
.tc { text-align: center; }
|
|
21
|
+
.h-tc { text-align: center; }
|
|
22
|
+
|
|
23
|
+
.h-no_margin {
|
|
24
|
+
margin: 0 !important;
|
|
25
|
+
}
|
data/_sass/_main.scss
CHANGED
|
@@ -15,14 +15,19 @@ a {
|
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
figure {
|
|
18
|
+
figure, .highlighter-rouge {
|
|
19
19
|
margin: 0;
|
|
20
20
|
|
|
21
|
-
pre {
|
|
21
|
+
pre, .highlight {
|
|
22
22
|
background: $grey-color;
|
|
23
23
|
padding: 0.75em 1em;
|
|
24
24
|
border-radius: 4px;
|
|
25
25
|
border: 1px solid #ddd;
|
|
26
|
+
|
|
27
|
+
code {
|
|
28
|
+
background: none;
|
|
29
|
+
padding: 0;
|
|
30
|
+
}
|
|
26
31
|
}
|
|
27
32
|
|
|
28
33
|
code { border: none; }
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wunsh-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Wunsh.ru
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-08-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|