jekyll-theme-mehdix-rtl 0.1.19 → 0.1.20
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/head.html +1 -0
- data/_includes/static_comments.html +1 -1
- data/_layouts/post.html +14 -8
- data/_sass/_tagcloud.scss +2 -15
- data/assets/css/fa-svg-with-js.css +343 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '0406948b90fd6d8fcb80412eda4cc4997f57edbd'
|
4
|
+
data.tar.gz: fd2b8631a3e5935adf72cc65a453117cc9adb752
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dfb77b48fa8c938e80311ea30cf21897cd4eeda4e1be5d444b160f9c422eb9771f959dc0d3200618ea4a4cf575ffe8aa7a16a063eafde612728c9516dd0028f4
|
7
|
+
data.tar.gz: c5ff564e354e2fa09936fbf7f405ba1917a901e2964df9c83a3b4f661b5ca185c8920040d4fdbbd655bc74f2857aee0baa47ae865d5c4cfce9646aa17ca785c5
|
data/_includes/head.html
CHANGED
@@ -19,6 +19,7 @@
|
|
19
19
|
<title>{{ site.title }}</title>
|
20
20
|
{%- endif -%}
|
21
21
|
<link rel="stylesheet" href="{{ 'assets/css/main.css' | absolute_url }}" />
|
22
|
+
<link rel="stylesheet" href="{{ 'assets/css/fa-svg-with-js.css' | absolute_url }}" />
|
22
23
|
<link rel="canonical" href="{{ site.baseurl, page.url | absolute_url }}" />
|
23
24
|
<link rel="icon" href="{{ site.favicon | absolute_url}}" />
|
24
25
|
{%- if page.style -%}
|
data/_layouts/post.html
CHANGED
@@ -13,11 +13,16 @@ layout: default
|
|
13
13
|
</article>
|
14
14
|
<small id="post-tags">
|
15
15
|
{% for tag in page.tags %}
|
16
|
-
|
17
|
-
|
16
|
+
<!--i class="fas fa-tag"></i-->
|
17
|
+
<svg class="svg-inline--fa fa-tag fa-w-16" aria-hidden="true" data-fa-processed="" data-prefix="fas" data-icon="tag" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"></path></svg>
|
18
|
+
<a rel="tag" href="{{ tag | tag_url }}">{{tag}}</a>
|
18
19
|
{% endfor %}
|
19
|
-
</small>
|
20
20
|
|
21
|
+
<!--i class="fas fa-code"></i-->
|
22
|
+
<svg class="svg-inline--fa fa-code fa-w-20" aria-hidden="true" data-fa-processed="" data-prefix="fas" data-icon="code" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><path fill="currentColor" d="M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"></path></svg>
|
23
|
+
|
24
|
+
<a href="https://raw.githubusercontent.com/{{site.github.username}}/{{site.github.repository}}/master/{{page.path}}">سورس</a>
|
25
|
+
</small>
|
21
26
|
<nav class="pagination">
|
22
27
|
{% if page.previous %}
|
23
28
|
<a href="{{ page.previous.url | absolute_url }}" class="pagination--pager" title="{{ page.previous.title }}">قبلی </a>
|
@@ -32,10 +37,11 @@ layout: default
|
|
32
37
|
{% endif %}
|
33
38
|
</nav>
|
34
39
|
|
35
|
-
|
36
|
-
|
37
|
-
{%
|
38
|
-
|
39
|
-
{%
|
40
|
+
|
41
|
+
{% if site.comment_system == 'static' %}
|
42
|
+
{% include static_comments.html %}
|
43
|
+
{% elsif site.comment_system == 'disqus' %}
|
44
|
+
{% include disqus.html %}
|
45
|
+
{% endif %}
|
40
46
|
|
41
47
|
</div>
|
data/_sass/_tagcloud.scss
CHANGED
@@ -2,21 +2,8 @@
|
|
2
2
|
* Tag cloud sets. Numbers demonstrate repeat frequency for each tag
|
3
3
|
*/
|
4
4
|
#post-tags {
|
5
|
-
|
6
|
-
|
7
|
-
> i {
|
8
|
-
background-image: url($assets-dir + "/img/noun_4018.png");
|
9
|
-
display: inline-block;
|
10
|
-
width: 14px;
|
11
|
-
height: 14px;
|
12
|
-
margin-top: 1px;
|
13
|
-
line-height: 14px;
|
14
|
-
background-repeat: no-repeat;
|
15
|
-
background-size: 15px 15px;
|
16
|
-
}
|
17
|
-
|
18
|
-
> a {
|
19
|
-
vertical-align: middle;
|
5
|
+
a {
|
6
|
+
margin-left: 0.5em;
|
20
7
|
}
|
21
8
|
}
|
22
9
|
|
@@ -0,0 +1,343 @@
|
|
1
|
+
/*!
|
2
|
+
* Font Awesome Free 5.0.2 by @fontawesome - http://fontawesome.com
|
3
|
+
* License - http://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
4
|
+
*/
|
5
|
+
svg:not(:root).svg-inline--fa {
|
6
|
+
overflow: visible; }
|
7
|
+
|
8
|
+
.svg-inline--fa {
|
9
|
+
display: inline-block;
|
10
|
+
font-size: inherit;
|
11
|
+
height: 1em;
|
12
|
+
overflow: visible;
|
13
|
+
vertical-align: -.125em; }
|
14
|
+
.svg-inline--fa.fa-lg {
|
15
|
+
vertical-align: -.225em; }
|
16
|
+
.svg-inline--fa.fa-w-1 {
|
17
|
+
width: 0.0625em; }
|
18
|
+
.svg-inline--fa.fa-w-2 {
|
19
|
+
width: 0.125em; }
|
20
|
+
.svg-inline--fa.fa-w-3 {
|
21
|
+
width: 0.1875em; }
|
22
|
+
.svg-inline--fa.fa-w-4 {
|
23
|
+
width: 0.25em; }
|
24
|
+
.svg-inline--fa.fa-w-5 {
|
25
|
+
width: 0.3125em; }
|
26
|
+
.svg-inline--fa.fa-w-6 {
|
27
|
+
width: 0.375em; }
|
28
|
+
.svg-inline--fa.fa-w-7 {
|
29
|
+
width: 0.4375em; }
|
30
|
+
.svg-inline--fa.fa-w-8 {
|
31
|
+
width: 0.5em; }
|
32
|
+
.svg-inline--fa.fa-w-9 {
|
33
|
+
width: 0.5625em; }
|
34
|
+
.svg-inline--fa.fa-w-10 {
|
35
|
+
width: 0.625em; }
|
36
|
+
.svg-inline--fa.fa-w-11 {
|
37
|
+
width: 0.6875em; }
|
38
|
+
.svg-inline--fa.fa-w-12 {
|
39
|
+
width: 0.75em; }
|
40
|
+
.svg-inline--fa.fa-w-13 {
|
41
|
+
width: 0.8125em; }
|
42
|
+
.svg-inline--fa.fa-w-14 {
|
43
|
+
width: 0.875em; }
|
44
|
+
.svg-inline--fa.fa-w-15 {
|
45
|
+
width: 0.9375em; }
|
46
|
+
.svg-inline--fa.fa-w-16 {
|
47
|
+
width: 1em; }
|
48
|
+
.svg-inline--fa.fa-w-17 {
|
49
|
+
width: 1.0625em; }
|
50
|
+
.svg-inline--fa.fa-w-18 {
|
51
|
+
width: 1.125em; }
|
52
|
+
.svg-inline--fa.fa-w-19 {
|
53
|
+
width: 1.1875em; }
|
54
|
+
.svg-inline--fa.fa-w-20 {
|
55
|
+
width: 1.25em; }
|
56
|
+
.svg-inline--fa.fa-pull-left {
|
57
|
+
margin-right: .3em;
|
58
|
+
width: auto; }
|
59
|
+
.svg-inline--fa.fa-pull-right {
|
60
|
+
margin-left: .3em;
|
61
|
+
width: auto; }
|
62
|
+
.svg-inline--fa.fa-border {
|
63
|
+
height: 1.5em; }
|
64
|
+
.svg-inline--fa.fa-li {
|
65
|
+
width: 2em; }
|
66
|
+
.svg-inline--fa.fa-fw {
|
67
|
+
width: 1.25em; }
|
68
|
+
|
69
|
+
.fa-layers svg.svg-inline--fa {
|
70
|
+
bottom: 0;
|
71
|
+
left: 0;
|
72
|
+
margin: auto;
|
73
|
+
position: absolute;
|
74
|
+
right: 0;
|
75
|
+
top: 0; }
|
76
|
+
|
77
|
+
.fa-layers {
|
78
|
+
display: inline-block;
|
79
|
+
height: 1em;
|
80
|
+
position: relative;
|
81
|
+
text-align: center;
|
82
|
+
vertical-align: -12.5%;
|
83
|
+
width: 1em; }
|
84
|
+
.fa-layers svg.svg-inline--fa {
|
85
|
+
-webkit-transform-origin: center center;
|
86
|
+
transform-origin: center center; }
|
87
|
+
|
88
|
+
.fa-layers-text, .fa-layers-counter {
|
89
|
+
display: inline-block;
|
90
|
+
position: absolute;
|
91
|
+
text-align: center; }
|
92
|
+
|
93
|
+
.fa-layers-text {
|
94
|
+
left: 50%;
|
95
|
+
top: 50%;
|
96
|
+
-webkit-transform: translate(-50%, -50%);
|
97
|
+
transform: translate(-50%, -50%);
|
98
|
+
-webkit-transform-origin: center center;
|
99
|
+
transform-origin: center center; }
|
100
|
+
|
101
|
+
.fa-layers-counter {
|
102
|
+
background-color: #ff253a;
|
103
|
+
border-radius: 1em;
|
104
|
+
color: #fff;
|
105
|
+
height: 1.5em;
|
106
|
+
line-height: 1;
|
107
|
+
max-width: 5em;
|
108
|
+
min-width: 1.5em;
|
109
|
+
overflow: hidden;
|
110
|
+
padding: .25em;
|
111
|
+
right: 0;
|
112
|
+
text-overflow: ellipsis;
|
113
|
+
top: 0;
|
114
|
+
-webkit-transform: scale(0.25);
|
115
|
+
transform: scale(0.25);
|
116
|
+
-webkit-transform-origin: top right;
|
117
|
+
transform-origin: top right; }
|
118
|
+
|
119
|
+
.fa-layers-bottom-right {
|
120
|
+
bottom: 0;
|
121
|
+
right: 0;
|
122
|
+
top: auto;
|
123
|
+
-webkit-transform: scale(0.25);
|
124
|
+
transform: scale(0.25);
|
125
|
+
-webkit-transform-origin: bottom right;
|
126
|
+
transform-origin: bottom right; }
|
127
|
+
|
128
|
+
.fa-layers-bottom-left {
|
129
|
+
bottom: 0;
|
130
|
+
left: 0;
|
131
|
+
right: auto;
|
132
|
+
top: auto;
|
133
|
+
-webkit-transform: scale(0.25);
|
134
|
+
transform: scale(0.25);
|
135
|
+
-webkit-transform-origin: bottom left;
|
136
|
+
transform-origin: bottom left; }
|
137
|
+
|
138
|
+
.fa-layers-top-right {
|
139
|
+
right: 0;
|
140
|
+
top: 0;
|
141
|
+
-webkit-transform: scale(0.25);
|
142
|
+
transform: scale(0.25);
|
143
|
+
-webkit-transform-origin: top right;
|
144
|
+
transform-origin: top right; }
|
145
|
+
|
146
|
+
.fa-layers-top-left {
|
147
|
+
left: 0;
|
148
|
+
right: auto;
|
149
|
+
top: 0;
|
150
|
+
-webkit-transform: scale(0.25);
|
151
|
+
transform: scale(0.25);
|
152
|
+
-webkit-transform-origin: top left;
|
153
|
+
transform-origin: top left; }
|
154
|
+
|
155
|
+
.fa-lg {
|
156
|
+
font-size: 1.33333em;
|
157
|
+
line-height: 0.75em;
|
158
|
+
vertical-align: -.0667em; }
|
159
|
+
|
160
|
+
.fa-xs {
|
161
|
+
font-size: .75em; }
|
162
|
+
|
163
|
+
.fa-sm {
|
164
|
+
font-size: .875em; }
|
165
|
+
|
166
|
+
.fa-1x {
|
167
|
+
font-size: 1em; }
|
168
|
+
|
169
|
+
.fa-2x {
|
170
|
+
font-size: 2em; }
|
171
|
+
|
172
|
+
.fa-3x {
|
173
|
+
font-size: 3em; }
|
174
|
+
|
175
|
+
.fa-4x {
|
176
|
+
font-size: 4em; }
|
177
|
+
|
178
|
+
.fa-5x {
|
179
|
+
font-size: 5em; }
|
180
|
+
|
181
|
+
.fa-6x {
|
182
|
+
font-size: 6em; }
|
183
|
+
|
184
|
+
.fa-7x {
|
185
|
+
font-size: 7em; }
|
186
|
+
|
187
|
+
.fa-8x {
|
188
|
+
font-size: 8em; }
|
189
|
+
|
190
|
+
.fa-9x {
|
191
|
+
font-size: 9em; }
|
192
|
+
|
193
|
+
.fa-10x {
|
194
|
+
font-size: 10em; }
|
195
|
+
|
196
|
+
.fa-fw {
|
197
|
+
text-align: center;
|
198
|
+
width: 1.25em; }
|
199
|
+
|
200
|
+
.fa-ul {
|
201
|
+
list-style-type: none;
|
202
|
+
margin-left: 2.5em;
|
203
|
+
padding-left: 0; }
|
204
|
+
.fa-ul > li {
|
205
|
+
position: relative; }
|
206
|
+
|
207
|
+
.fa-li {
|
208
|
+
left: -2em;
|
209
|
+
position: absolute;
|
210
|
+
text-align: center;
|
211
|
+
width: 2em;
|
212
|
+
line-height: inherit; }
|
213
|
+
|
214
|
+
.fa-border {
|
215
|
+
border: solid 0.08em #eee;
|
216
|
+
border-radius: .1em;
|
217
|
+
padding: .2em .25em .15em; }
|
218
|
+
|
219
|
+
.fa-pull-left {
|
220
|
+
float: left; }
|
221
|
+
|
222
|
+
.fa-pull-right {
|
223
|
+
float: right; }
|
224
|
+
|
225
|
+
.fa.fa-pull-left,
|
226
|
+
.fas.fa-pull-left,
|
227
|
+
.far.fa-pull-left,
|
228
|
+
.fal.fa-pull-left,
|
229
|
+
.fab.fa-pull-left {
|
230
|
+
margin-right: .3em; }
|
231
|
+
|
232
|
+
.fa.fa-pull-right,
|
233
|
+
.fas.fa-pull-right,
|
234
|
+
.far.fa-pull-right,
|
235
|
+
.fal.fa-pull-right,
|
236
|
+
.fab.fa-pull-right {
|
237
|
+
margin-left: .3em; }
|
238
|
+
|
239
|
+
.fa-spin {
|
240
|
+
-webkit-animation: fa-spin 2s infinite linear;
|
241
|
+
animation: fa-spin 2s infinite linear; }
|
242
|
+
|
243
|
+
.fa-pulse {
|
244
|
+
-webkit-animation: fa-spin 1s infinite steps(8);
|
245
|
+
animation: fa-spin 1s infinite steps(8); }
|
246
|
+
|
247
|
+
@-webkit-keyframes fa-spin {
|
248
|
+
0% {
|
249
|
+
-webkit-transform: rotate(0deg);
|
250
|
+
transform: rotate(0deg); }
|
251
|
+
100% {
|
252
|
+
-webkit-transform: rotate(360deg);
|
253
|
+
transform: rotate(360deg); } }
|
254
|
+
|
255
|
+
@keyframes fa-spin {
|
256
|
+
0% {
|
257
|
+
-webkit-transform: rotate(0deg);
|
258
|
+
transform: rotate(0deg); }
|
259
|
+
100% {
|
260
|
+
-webkit-transform: rotate(360deg);
|
261
|
+
transform: rotate(360deg); } }
|
262
|
+
|
263
|
+
.fa-rotate-90 {
|
264
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
|
265
|
+
-webkit-transform: rotate(90deg);
|
266
|
+
transform: rotate(90deg); }
|
267
|
+
|
268
|
+
.fa-rotate-180 {
|
269
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
|
270
|
+
-webkit-transform: rotate(180deg);
|
271
|
+
transform: rotate(180deg); }
|
272
|
+
|
273
|
+
.fa-rotate-270 {
|
274
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
|
275
|
+
-webkit-transform: rotate(270deg);
|
276
|
+
transform: rotate(270deg); }
|
277
|
+
|
278
|
+
.fa-flip-horizontal {
|
279
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
|
280
|
+
-webkit-transform: scale(-1, 1);
|
281
|
+
transform: scale(-1, 1); }
|
282
|
+
|
283
|
+
.fa-flip-vertical {
|
284
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
|
285
|
+
-webkit-transform: scale(1, -1);
|
286
|
+
transform: scale(1, -1); }
|
287
|
+
|
288
|
+
.fa-flip-horizontal.fa-flip-vertical {
|
289
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
|
290
|
+
-webkit-transform: scale(-1, -1);
|
291
|
+
transform: scale(-1, -1); }
|
292
|
+
|
293
|
+
:root .fa-rotate-90,
|
294
|
+
:root .fa-rotate-180,
|
295
|
+
:root .fa-rotate-270,
|
296
|
+
:root .fa-flip-horizontal,
|
297
|
+
:root .fa-flip-vertical {
|
298
|
+
-webkit-filter: none;
|
299
|
+
filter: none; }
|
300
|
+
|
301
|
+
.fa-stack {
|
302
|
+
display: inline-block;
|
303
|
+
height: 2em;
|
304
|
+
position: relative;
|
305
|
+
width: 2em; }
|
306
|
+
|
307
|
+
.fa-stack-1x,
|
308
|
+
.fa-stack-2x {
|
309
|
+
bottom: 0;
|
310
|
+
left: 0;
|
311
|
+
margin: auto;
|
312
|
+
position: absolute;
|
313
|
+
right: 0;
|
314
|
+
top: 0; }
|
315
|
+
|
316
|
+
.svg-inline--fa.fa-stack-1x {
|
317
|
+
height: 1em;
|
318
|
+
width: 1em; }
|
319
|
+
|
320
|
+
.svg-inline--fa.fa-stack-2x {
|
321
|
+
height: 2em;
|
322
|
+
width: 2em; }
|
323
|
+
|
324
|
+
.fa-inverse {
|
325
|
+
color: #fff; }
|
326
|
+
|
327
|
+
.sr-only {
|
328
|
+
border: 0;
|
329
|
+
clip: rect(0, 0, 0, 0);
|
330
|
+
height: 1px;
|
331
|
+
margin: -1px;
|
332
|
+
overflow: hidden;
|
333
|
+
padding: 0;
|
334
|
+
position: absolute;
|
335
|
+
width: 1px; }
|
336
|
+
|
337
|
+
.sr-only-focusable:active, .sr-only-focusable:focus {
|
338
|
+
clip: auto;
|
339
|
+
height: auto;
|
340
|
+
margin: 0;
|
341
|
+
overflow: visible;
|
342
|
+
position: static;
|
343
|
+
width: auto; }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-mehdix-rtl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.20
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mehdi Sadeghi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-12-
|
11
|
+
date: 2017-12-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -169,6 +169,7 @@ files:
|
|
169
169
|
- _sass/_print.scss
|
170
170
|
- _sass/_tagcloud.scss
|
171
171
|
- _sass/custom.scss
|
172
|
+
- assets/css/fa-svg-with-js.css
|
172
173
|
- assets/css/main.scss
|
173
174
|
- assets/css/pygments.css
|
174
175
|
- assets/img/background.gif
|
@@ -202,7 +203,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
202
203
|
version: '0'
|
203
204
|
requirements: []
|
204
205
|
rubyforge_project:
|
205
|
-
rubygems_version: 2.6.
|
206
|
+
rubygems_version: 2.6.14
|
206
207
|
signing_key:
|
207
208
|
specification_version: 4
|
208
209
|
summary: A right-to-left theme for Jekyll with Jalali support and some other goodies.
|