aprico 0.0.1 → 0.0.2
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
- metadata +1 -4
- data/_includes/footer.html +0 -1
- data/_includes/head.html +0 -7
- data/_includes/menu.html +0 -56
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cad96dbb135bcfc2686ddb5f6c3f8dd2dfdd3aaf
|
|
4
|
+
data.tar.gz: 6d79e3fe81e70adc15ba0c17fef7e22f1945eb6a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bb1d0af07c284e067cf691abd4a09e39eee36d4eb709dea5a7dca21640538fea35cd632abbd7d6b74b6878f6b985d6c13ecce53c176520a4e42738e9f01cb0f4
|
|
7
|
+
data.tar.gz: dba84110964880b7c5f85dd2fa35d84a0a71003d26e4d2a316e9c84542578e1e6d86015899b4077b814ae91ba2d88b3af6647b6c9123684669c508ef46b87ff0
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aprico
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dmytro Kalpakchi
|
|
@@ -61,9 +61,6 @@ extra_rdoc_files: []
|
|
|
61
61
|
files:
|
|
62
62
|
- LICENSE.txt
|
|
63
63
|
- README.md
|
|
64
|
-
- _includes/footer.html
|
|
65
|
-
- _includes/head.html
|
|
66
|
-
- _includes/menu.html
|
|
67
64
|
- _layouts/default.html
|
|
68
65
|
- _layouts/home.html
|
|
69
66
|
- _layouts/page.html
|
data/_includes/footer.html
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Footer!
|
data/_includes/head.html
DELETED
data/_includes/menu.html
DELETED
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
{% assign t = site.i18n[page.lang].menu %}
|
|
2
|
-
<div class="ui left fixed inverted violet straight vertical labeled large icon stackable menu">
|
|
3
|
-
{% assign pages=site.pages | where:"ref", page.ref | sort: 'lang' %}
|
|
4
|
-
<div class="ui violet fluid straight inverted simple buttons mobile hidden">
|
|
5
|
-
{% for pg in pages %}
|
|
6
|
-
<a href="{{ pg.url }}" class="ui button {{ pg.lang }} widescreen monitor only">{{ site.i18n[pg.lang].menu['lang'] }}</a>
|
|
7
|
-
<a href="{{ pg.url }}" class="ui button {{ pg.lang }} large monitor only">{{ site.i18n[pg.lang].menu['lang'] }}</a>
|
|
8
|
-
<a href="{{ pg.url }}" class="ui button {{ pg.lang }} computer only">{{ pg.lang }}</a>
|
|
9
|
-
<a href="{{ pg.url }}" class="ui button {{ pg.lang }} tablet only">{{ pg.lang }}</a>
|
|
10
|
-
<a href="{{ pg.url }}" class="ui button {{ pg.lang }} mobile only left floated">{{ pg.lang }}</a>
|
|
11
|
-
{% endfor %}
|
|
12
|
-
|
|
13
|
-
{% for c in site.collections %}
|
|
14
|
-
{% assign category=site[c.label] | where:"ref", page.ref | sort: 'lang' %}
|
|
15
|
-
{% for el in category %}
|
|
16
|
-
<a href="{{ el.url }}" class="ui button {{ el.lang }} widescreen monitor only">{{ site.i18n[el.lang].menu['lang'] }}</a>
|
|
17
|
-
<a href="{{ el.url }}" class="ui button {{ el.lang }} large monitor only">{{ site.i18n[el.lang].menu['lang'] }}</a>
|
|
18
|
-
<a href="{{ el.url }}" class="ui button {{ el.lang }} computer only">{{ el.lang }}</a>
|
|
19
|
-
<a href="{{ el.url }}" class="ui button {{ el.lang }} tablet only">{{ el.lang }}</a>
|
|
20
|
-
<a href="{{ el.url }}" class="ui button {{ el.lang }} mobile only">{{ el.lang }}</a>
|
|
21
|
-
{% endfor %}
|
|
22
|
-
{% endfor %}
|
|
23
|
-
</div>
|
|
24
|
-
|
|
25
|
-
<div class="ui violet fluid straight inverted simple buttons mobile only container">
|
|
26
|
-
{% for pg in pages %}
|
|
27
|
-
<a href="{{ pg.url }}" class="ui button {{ pg.lang }}">{{ pg.lang }}</a>
|
|
28
|
-
{% endfor %}
|
|
29
|
-
|
|
30
|
-
{% for c in site.collections %}
|
|
31
|
-
{% assign category=site[c.label] | where:"ref", page.ref | sort: 'lang' %}
|
|
32
|
-
{% for el in category %}
|
|
33
|
-
<a href="{{ el.url }}" class="ui button {{ el.lang }}">{{ el.lang }}</a>
|
|
34
|
-
{% endfor %}
|
|
35
|
-
{% endfor %}
|
|
36
|
-
</div>
|
|
37
|
-
<div class="ui basic logo centered segment mobile hidden">Apricis</div>
|
|
38
|
-
<div class="ui basic logo centered segment mobile only">A</div>
|
|
39
|
-
|
|
40
|
-
<a href="/{{page.lang}}/" class="item"><i class="newspaper icon"></i>{{t.posts}}</a>
|
|
41
|
-
<a class="item"><i class="lab icon"></i>{{t.sandbox}}</a>
|
|
42
|
-
<a class="item"><i class="wizard icon"></i>{{t.projects}}</a>
|
|
43
|
-
<a class="item"><i class="user icon"></i>{{t.about}}</a>
|
|
44
|
-
|
|
45
|
-
<div class="ui social left aligned mobile hidden container">
|
|
46
|
-
<div class="ui vertical large segment"><i class="github icon"></i><a href="https://github.com/apricis">{{site.github_username}}</a></div>
|
|
47
|
-
<div class="ui vertical large segment"><i class="facebook icon"></i><a href="https://www.facebook.com/dmytro.kalpakchi">{{site.facebook_username}}</a></div>
|
|
48
|
-
<div class="ui vertical large segment"><i class="at icon"></i>{{site.email}}</a></div>
|
|
49
|
-
</div>
|
|
50
|
-
|
|
51
|
-
<div class="ui social mobile only violet icon fluid buttons">
|
|
52
|
-
<a href="https://github.com/apricis" class="ui huge icon button"><i class="github icon"></i></a>
|
|
53
|
-
<a href="https://www.facebook.com/dmytro.kalpakchi" class="ui huge icon button"><i class="facebook icon"></i></a>
|
|
54
|
-
<i class="at icon"></i>{{site.email}}
|
|
55
|
-
</div>
|
|
56
|
-
</div>
|