hanuman 0.3.0 → 0.4.0
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/LICENSE.txt +21 -21
- data/README.md +175 -173
- data/_data/authors.yml +16 -0
- data/_data/navigation.yml +4 -4
- data/_includes/analytics.html +15 -15
- data/_includes/footer.html +65 -65
- data/_includes/head.html +68 -68
- data/_includes/header.html +58 -58
- data/_includes/metadata.json +30 -30
- data/_includes/styles.scss +727 -727
- data/_layouts/default.html +13 -13
- data/_layouts/page.html +16 -16
- data/_layouts/post.html +157 -153
- data/_sass/_syntax-highlighting.scss +65 -65
- data/_sass/bourbon/_bourbon-deprecated-upcoming.scss +8 -8
- data/_sass/bourbon/_bourbon.scss +79 -79
- data/_sass/bourbon/addons/_button.scss +374 -374
- data/_sass/bourbon/addons/_clearfix.scss +23 -23
- data/_sass/bourbon/addons/_directional-values.scss +111 -111
- data/_sass/bourbon/addons/_ellipsis.scss +7 -7
- data/_sass/bourbon/addons/_font-family.scss +5 -5
- data/_sass/bourbon/addons/_hide-text.scss +10 -10
- data/_sass/bourbon/addons/_html5-input-types.scss +86 -86
- data/_sass/bourbon/addons/_position.scss +32 -32
- data/_sass/bourbon/addons/_prefixer.scss +45 -45
- data/_sass/bourbon/addons/_retina-image.scss +31 -31
- data/_sass/bourbon/addons/_size.scss +16 -16
- data/_sass/bourbon/addons/_timing-functions.scss +32 -32
- data/_sass/bourbon/addons/_triangle.scss +83 -83
- data/_sass/bourbon/addons/_word-wrap.scss +8 -8
- data/_sass/bourbon/css3/_animation.scss +52 -52
- data/_sass/bourbon/css3/_appearance.scss +3 -3
- data/_sass/bourbon/css3/_backface-visibility.scss +6 -6
- data/_sass/bourbon/css3/_background-image.scss +42 -42
- data/_sass/bourbon/css3/_background.scss +55 -55
- data/_sass/bourbon/css3/_border-image.scss +59 -59
- data/_sass/bourbon/css3/_border-radius.scss +22 -22
- data/_sass/bourbon/css3/_box-sizing.scss +4 -4
- data/_sass/bourbon/css3/_calc.scss +4 -4
- data/_sass/bourbon/css3/_columns.scss +47 -47
- data/_sass/bourbon/css3/_filter.scss +5 -5
- data/_sass/bourbon/css3/_flex-box.scss +321 -321
- data/_sass/bourbon/css3/_font-face.scss +23 -23
- data/_sass/bourbon/css3/_font-feature-settings.scss +9 -9
- data/_sass/bourbon/css3/_hidpi-media-query.scss +10 -10
- data/_sass/bourbon/css3/_hyphens.scss +3 -3
- data/_sass/bourbon/css3/_image-rendering.scss +14 -14
- data/_sass/bourbon/css3/_keyframes.scss +35 -35
- data/_sass/bourbon/css3/_linear-gradient.scss +38 -38
- data/_sass/bourbon/css3/_perspective.scss +8 -8
- data/_sass/bourbon/css3/_placeholder.scss +8 -8
- data/_sass/bourbon/css3/_radial-gradient.scss +39 -39
- data/_sass/bourbon/css3/_transform.scss +15 -15
- data/_sass/bourbon/css3/_transition.scss +77 -77
- data/_sass/bourbon/css3/_user-select.scss +3 -3
- data/_sass/bourbon/functions/_assign.scss +10 -10
- data/_sass/bourbon/functions/_color-lightness.scss +13 -13
- data/_sass/bourbon/functions/_flex-grid.scss +38 -38
- data/_sass/bourbon/functions/_golden-ratio.scss +3 -3
- data/_sass/bourbon/functions/_grid-width.scss +13 -13
- data/_sass/bourbon/functions/_modular-scale.scss +66 -66
- data/_sass/bourbon/functions/_px-to-em.scss +13 -13
- data/_sass/bourbon/functions/_px-to-rem.scss +15 -15
- data/_sass/bourbon/functions/_strip-units.scss +5 -5
- data/_sass/bourbon/functions/_tint-shade.scss +9 -9
- data/_sass/bourbon/functions/_transition-property-name.scss +21 -21
- data/_sass/bourbon/functions/_unpack.scss +17 -17
- data/_sass/bourbon/helpers/_convert-units.scss +15 -15
- data/_sass/bourbon/helpers/_gradient-positions-parser.scss +13 -13
- data/_sass/bourbon/helpers/_is-num.scss +8 -8
- data/_sass/bourbon/helpers/_linear-angle-parser.scss +25 -25
- data/_sass/bourbon/helpers/_linear-gradient-parser.scss +41 -41
- data/_sass/bourbon/helpers/_linear-positions-parser.scss +61 -61
- data/_sass/bourbon/helpers/_linear-side-corner-parser.scss +31 -31
- data/_sass/bourbon/helpers/_radial-arg-parser.scss +69 -69
- data/_sass/bourbon/helpers/_radial-gradient-parser.scss +50 -50
- data/_sass/bourbon/helpers/_radial-positions-parser.scss +18 -18
- data/_sass/bourbon/helpers/_render-gradients.scss +26 -26
- data/_sass/bourbon/helpers/_shape-size-stripper.scss +10 -10
- data/_sass/bourbon/helpers/_str-to-num.scss +50 -50
- data/_sass/bourbon/settings/_asset-pipeline.scss +1 -1
- data/_sass/bourbon/settings/_prefixer.scss +6 -6
- data/_sass/bourbon/settings/_px-to-em.scss +1 -1
- metadata +4 -4
- data/_data/author.yml +0 -8
data/_layouts/default.html
CHANGED
@@ -1,13 +1,13 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html ⚡ lang="en">
|
3
|
-
{% include head.html %}
|
4
|
-
<body>
|
5
|
-
{% include header.html %}
|
6
|
-
|
7
|
-
{{ content }}
|
8
|
-
|
9
|
-
{% comment %}
|
10
|
-
{% include analytics.html %}
|
11
|
-
{% endcomment %}
|
12
|
-
</body>
|
13
|
-
</html>
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html ⚡ lang="en">
|
3
|
+
{% include head.html %}
|
4
|
+
<body>
|
5
|
+
{% include header.html %}
|
6
|
+
|
7
|
+
{{ content }}
|
8
|
+
|
9
|
+
{% comment %}
|
10
|
+
{% include analytics.html %}
|
11
|
+
{% endcomment %}
|
12
|
+
</body>
|
13
|
+
</html>
|
data/_layouts/page.html
CHANGED
@@ -1,16 +1,16 @@
|
|
1
|
-
---
|
2
|
-
layout: default
|
3
|
-
---
|
4
|
-
<main class="content" role="main">
|
5
|
-
<article class="post">
|
6
|
-
<div class="post-meta">
|
7
|
-
<h1 class="post-title">{{ page.title }}</h1>
|
8
|
-
</div>
|
9
|
-
<section class="post-content">
|
10
|
-
<a name="topofpage"></a>
|
11
|
-
{{content}}
|
12
|
-
</section>
|
13
|
-
</article>
|
14
|
-
</main>
|
15
|
-
|
16
|
-
{% include footer.html %}
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
<main class="content" role="main">
|
5
|
+
<article class="post">
|
6
|
+
<div class="post-meta">
|
7
|
+
<h1 class="post-title">{{ page.title }}</h1>
|
8
|
+
</div>
|
9
|
+
<section class="post-content">
|
10
|
+
<a name="topofpage"></a>
|
11
|
+
{{content}}
|
12
|
+
</section>
|
13
|
+
</article>
|
14
|
+
</main>
|
15
|
+
|
16
|
+
{% include footer.html %}
|
data/_layouts/post.html
CHANGED
@@ -1,153 +1,157 @@
|
|
1
|
-
---
|
2
|
-
layout: default
|
3
|
-
---
|
4
|
-
{% if page.cover %}
|
5
|
-
<figure class="ampstart-image-fullpage-hero m0 relative mb4">
|
6
|
-
<amp-img width="404" height="720" alt="{{ page.title }}" layout="responsive" src="{{ site.baseurl }}{{ page.cover }}" media="(max-width: 415px)"></amp-img>
|
7
|
-
<amp-img height="720" alt="{{ page.title }}" layout="fixed-height" src="{{ site.baseurl }}{{ page.cover }}" media="(min-width: 416px)"></amp-img>
|
8
|
-
<figcaption class="absolute top-0 right-0 bottom-0 left-0">
|
9
|
-
<header class="p3">
|
10
|
-
<h1 class="ampstart-fullpage-hero-heading mb0 hanuman">
|
11
|
-
<span class="ampstart-fullpage-hero-heading-text title">
|
12
|
-
{{ page.title }}
|
13
|
-
</span>
|
14
|
-
</h1>
|
15
|
-
<h2 class="ampstart-fullpage-hero-heading mb0">
|
16
|
-
{% if page.author %}
|
17
|
-
<span class="ampstart-fullpage-hero-heading-text description">
|
18
|
-
By <b><a href="#" role="author" class="text-decoration-none author">{{page.author}}</a></b>
|
19
|
-
</span>
|
20
|
-
{% endif %}
|
21
|
-
</h2>
|
22
|
-
</header>
|
23
|
-
<footer class="absolute left-0 right-0 bottom-0">
|
24
|
-
<a class="ampstart-readmore py3 caps line-height-2 text-decoration-none center block h5" href="#content"><span class="ampstart-readmore-text px1">Read more</span></a>
|
25
|
-
</footer>
|
26
|
-
</figcaption>
|
27
|
-
</figure>
|
28
|
-
|
29
|
-
<main id="content" role="main" class="">
|
30
|
-
<article class="photo-article">
|
31
|
-
<div class="post-meta mb4 px3">
|
32
|
-
<time class="post-date" datetime="{{ page.date | date:'%Y-%m-%d' }}">{{ page.date | date_to_string }}</time>
|
33
|
-
|
34
|
-
{% if page.tags.size > 0 %}
|
35
|
-
in
|
36
|
-
{% for tag in page.tags %}
|
37
|
-
{% if forloop.index == page.tags.size %}
|
38
|
-
<a href=''>{{ tag | capitalize }}</a>
|
39
|
-
{% else %}
|
40
|
-
<a href=''>{{ tag | capitalize }}</a>,
|
41
|
-
{% endif %}
|
42
|
-
{% endfor %}
|
43
|
-
{% endif %}
|
44
|
-
|
45
|
-
</div>
|
46
|
-
|
47
|
-
<div class="mb4 px3 radhakrishna" align="left">
|
48
|
-
<amp-social-share type="facebook" width="45" height="33" data-param-app_id="145393166088568"></amp-social-share>
|
49
|
-
<amp-social-share type="twitter" width="45" height="33"></amp-social-share>
|
50
|
-
<amp-social-share type="whatsapp" width="45" height="33"></amp-social-share>
|
51
|
-
<amp-social-share type="gplus" width="45" height="33"></amp-social-share>
|
52
|
-
<amp-social-share width="45" height="33" type="email"></amp-social-share>
|
53
|
-
</div>
|
54
|
-
|
55
|
-
{% else %}
|
56
|
-
|
57
|
-
<main id="content" role="main" class="">
|
58
|
-
<article class="recipe-article">
|
59
|
-
<header>
|
60
|
-
{% if page.tags.size > 0 %}
|
61
|
-
<span class="ampstart-subtitle block px3 pt2 mb2">
|
62
|
-
{% for tag in page.tags %}
|
63
|
-
{% if forloop.index == page.tags.size %}
|
64
|
-
{{ tag |
|
65
|
-
{% else %}
|
66
|
-
{{ tag |
|
67
|
-
{% endif %}
|
68
|
-
{% endfor %}
|
69
|
-
</span>
|
70
|
-
{% endif %}
|
71
|
-
<h1 class="mb1 px3">{{page.title}}</h1>
|
72
|
-
|
73
|
-
<address class="ampstart-byline clearfix mb4 px3 h5">
|
74
|
-
<time class="ampstart-byline-pubdate block bold my1" datetime="{{ page.date | date:'%e %B %Y' }}">{{ page.date | date:'%e %B %Y' }}</time>
|
75
|
-
</address>
|
76
|
-
</header>
|
77
|
-
|
78
|
-
{% endif %}
|
79
|
-
|
80
|
-
<div class="px3 mb4">
|
81
|
-
{{content}}
|
82
|
-
</div>
|
83
|
-
|
84
|
-
<!-- Start Related article -->
|
85
|
-
|
86
|
-
{% if page.tags.size > 0 %}
|
87
|
-
{% assign primary = page.tags | first %}
|
88
|
-
{% assign related_posts = 0 %}
|
89
|
-
{% for post in site.posts %}
|
90
|
-
{% if post.tags.size > 0 %}
|
91
|
-
{% if post.tags contains primary %}
|
92
|
-
{% assign related_posts = related_posts | plus: 1 %}
|
93
|
-
{% endif %}
|
94
|
-
{% endif %}
|
95
|
-
{% endfor %}
|
96
|
-
{% if related_posts > 1 %}
|
97
|
-
<section class="ampstart-related-article-section p3 mb4 border-top">
|
98
|
-
<h2 class="ampstart-heading ampstart-label m0 mb3">Related article</h2>
|
99
|
-
<article class="ampstart-related-article">
|
100
|
-
{% if post.cover %}
|
101
|
-
<amp-img src="{{ site.baseurl }}{{ post.cover }}" width="656" height="350" layout="responsive" alt="" class="mb3"></amp-img>
|
102
|
-
{% else %}
|
103
|
-
{% if site.cover %}
|
104
|
-
<amp-img src="{{ site.baseurl }}{{ site.cover }}" width="656" height="350" layout="responsive" alt="" class="mb3"></amp-img>
|
105
|
-
{% endif %}
|
106
|
-
{% endif %}
|
107
|
-
{% assign count = 0 %}
|
108
|
-
{% for post in site.posts %}
|
109
|
-
{% if post.tags contains primary %}
|
110
|
-
{% if post.title != page.title %}
|
111
|
-
{% assign count = count | plus: 1 %}
|
112
|
-
{% if count <= 3 %}
|
113
|
-
<h3 class="ampstart-heading h4 m0 mb3"><b>{{ post.title }}</b></h3>
|
114
|
-
<p class="line-height-4 mb3">
|
115
|
-
{% if post.description %}
|
116
|
-
{{post.description}}
|
117
|
-
{% else %}
|
118
|
-
{{ post.content | strip_html | truncatewords:15 }}
|
119
|
-
{% endif %}
|
120
|
-
</p>
|
121
|
-
<a href="{{ site.baseurl }}{{ post.url | remove: '/' }}" class="ampstart-rekated-article-readmore block text-decoration-none ampstart-label">Read more</a>
|
122
|
-
{% endif %}
|
123
|
-
{% endif %}
|
124
|
-
{% endif %}
|
125
|
-
{% endfor %}
|
126
|
-
</article>
|
127
|
-
</section>
|
128
|
-
{% endif %}
|
129
|
-
{% endif %}
|
130
|
-
<!-- End Related article -->
|
131
|
-
<hr>
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
</
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
{% if page.cover %}
|
5
|
+
<figure class="ampstart-image-fullpage-hero m0 relative mb4">
|
6
|
+
<amp-img width="404" height="720" alt="{{ page.title }}" layout="responsive" src="{{ site.baseurl }}{{ page.cover }}" media="(max-width: 415px)"></amp-img>
|
7
|
+
<amp-img height="720" alt="{{ page.title }}" layout="fixed-height" src="{{ site.baseurl }}{{ page.cover }}" media="(min-width: 416px)"></amp-img>
|
8
|
+
<figcaption class="absolute top-0 right-0 bottom-0 left-0">
|
9
|
+
<header class="p3">
|
10
|
+
<h1 class="ampstart-fullpage-hero-heading mb0 hanuman">
|
11
|
+
<span class="ampstart-fullpage-hero-heading-text title">
|
12
|
+
{{ page.title }}
|
13
|
+
</span>
|
14
|
+
</h1>
|
15
|
+
<h2 class="ampstart-fullpage-hero-heading mb0">
|
16
|
+
{% if page.author %}
|
17
|
+
<span class="ampstart-fullpage-hero-heading-text description">
|
18
|
+
By <b><a href="#" role="author" class="text-decoration-none author">{{page.author}}</a></b>
|
19
|
+
</span>
|
20
|
+
{% endif %}
|
21
|
+
</h2>
|
22
|
+
</header>
|
23
|
+
<footer class="absolute left-0 right-0 bottom-0">
|
24
|
+
<a class="ampstart-readmore py3 caps line-height-2 text-decoration-none center block h5" href="#content"><span class="ampstart-readmore-text px1">Read more</span></a>
|
25
|
+
</footer>
|
26
|
+
</figcaption>
|
27
|
+
</figure>
|
28
|
+
|
29
|
+
<main id="content" role="main" class="">
|
30
|
+
<article class="photo-article">
|
31
|
+
<div class="post-meta mb4 px3">
|
32
|
+
<time class="post-date" datetime="{{ page.date | date:'%Y-%m-%d' }}">{{ page.date | date_to_string }}</time>
|
33
|
+
|
34
|
+
{% if page.tags.size > 0 %}
|
35
|
+
in
|
36
|
+
{% for tag in page.tags %}
|
37
|
+
{% if forloop.index == page.tags.size %}
|
38
|
+
<a href='{{site.baseurl}}tags/#{{tag}}'>{{ tag | capitalize }}</a>
|
39
|
+
{% else %}
|
40
|
+
<a href='{{site.baseurl}}tags/#{{tag}}'>{{ tag | capitalize }}</a>,
|
41
|
+
{% endif %}
|
42
|
+
{% endfor %}
|
43
|
+
{% endif %}
|
44
|
+
|
45
|
+
</div>
|
46
|
+
|
47
|
+
<div class="mb4 px3 radhakrishna" align="left">
|
48
|
+
<amp-social-share type="facebook" width="45" height="33" data-param-app_id="145393166088568"></amp-social-share>
|
49
|
+
<amp-social-share type="twitter" width="45" height="33"></amp-social-share>
|
50
|
+
<amp-social-share type="whatsapp" width="45" height="33"></amp-social-share>
|
51
|
+
<amp-social-share type="gplus" width="45" height="33"></amp-social-share>
|
52
|
+
<amp-social-share width="45" height="33" type="email"></amp-social-share>
|
53
|
+
</div>
|
54
|
+
|
55
|
+
{% else %}
|
56
|
+
|
57
|
+
<main id="content" role="main" class="">
|
58
|
+
<article class="recipe-article">
|
59
|
+
<header>
|
60
|
+
{% if page.tags.size > 0 %}
|
61
|
+
<span class="ampstart-subtitle block px3 pt2 mb2">
|
62
|
+
{% for tag in page.tags %}
|
63
|
+
{% if forloop.index == page.tags.size %}
|
64
|
+
<a href='{{site.baseurl}}tags/#{{tag}}'>{{ tag | capitalize }}</a>
|
65
|
+
{% else %}
|
66
|
+
<a href='{{site.baseurl}}tags/#{{tag}}'>{{ tag | capitalize }}</a>,
|
67
|
+
{% endif %}
|
68
|
+
{% endfor %}
|
69
|
+
</span>
|
70
|
+
{% endif %}
|
71
|
+
<h1 class="mb1 px3">{{page.title}}</h1>
|
72
|
+
|
73
|
+
<address class="ampstart-byline clearfix mb4 px3 h5">
|
74
|
+
<time class="ampstart-byline-pubdate block bold my1" datetime="{{ page.date | date:'%e %B %Y' }}">{{ page.date | date:'%e %B %Y' }}</time>
|
75
|
+
</address>
|
76
|
+
</header>
|
77
|
+
|
78
|
+
{% endif %}
|
79
|
+
|
80
|
+
<div class="px3 mb4">
|
81
|
+
{{content}}
|
82
|
+
</div>
|
83
|
+
|
84
|
+
<!-- Start Related article -->
|
85
|
+
|
86
|
+
{% if page.tags.size > 0 %}
|
87
|
+
{% assign primary = page.tags | first %}
|
88
|
+
{% assign related_posts = 0 %}
|
89
|
+
{% for post in site.posts %}
|
90
|
+
{% if post.tags.size > 0 %}
|
91
|
+
{% if post.tags contains primary %}
|
92
|
+
{% assign related_posts = related_posts | plus: 1 %}
|
93
|
+
{% endif %}
|
94
|
+
{% endif %}
|
95
|
+
{% endfor %}
|
96
|
+
{% if related_posts > 1 %}
|
97
|
+
<section class="ampstart-related-article-section p3 mb4 border-top">
|
98
|
+
<h2 class="ampstart-heading ampstart-label m0 mb3">Related article</h2>
|
99
|
+
<article class="ampstart-related-article">
|
100
|
+
{% if post.cover %}
|
101
|
+
<amp-img src="{{ site.baseurl }}{{ post.cover }}" width="656" height="350" layout="responsive" alt="" class="mb3"></amp-img>
|
102
|
+
{% else %}
|
103
|
+
{% if site.cover %}
|
104
|
+
<amp-img src="{{ site.baseurl }}{{ site.cover }}" width="656" height="350" layout="responsive" alt="" class="mb3"></amp-img>
|
105
|
+
{% endif %}
|
106
|
+
{% endif %}
|
107
|
+
{% assign count = 0 %}
|
108
|
+
{% for post in site.posts %}
|
109
|
+
{% if post.tags contains primary %}
|
110
|
+
{% if post.title != page.title %}
|
111
|
+
{% assign count = count | plus: 1 %}
|
112
|
+
{% if count <= 3 %}
|
113
|
+
<h3 class="ampstart-heading h4 m0 mb3"><b>{{ post.title }}</b></h3>
|
114
|
+
<p class="line-height-4 mb3">
|
115
|
+
{% if post.description %}
|
116
|
+
{{post.description}}
|
117
|
+
{% else %}
|
118
|
+
{{ post.content | strip_html | truncatewords:15 }}
|
119
|
+
{% endif %}
|
120
|
+
</p>
|
121
|
+
<a href="{{ site.baseurl }}{{ post.url | remove: '/' }}" class="ampstart-rekated-article-readmore block text-decoration-none ampstart-label">Read more</a>
|
122
|
+
{% endif %}
|
123
|
+
{% endif %}
|
124
|
+
{% endif %}
|
125
|
+
{% endfor %}
|
126
|
+
</article>
|
127
|
+
</section>
|
128
|
+
{% endif %}
|
129
|
+
{% endif %}
|
130
|
+
<!-- End Related article -->
|
131
|
+
<hr>
|
132
|
+
|
133
|
+
{% for author in site.data.authors %}
|
134
|
+
{% if author[1].username == page.author %}
|
135
|
+
<div class="author-section mb4">
|
136
|
+
{% if author[1].assets %}
|
137
|
+
<amp-img width="100" height="100" class="author-thumb-post" layout="responsive" src="{{ site.baseurl }}{{author[1].assets}}" alt="{{author[1].name}}"/></amp-img>
|
138
|
+
{% endif %}
|
139
|
+
<a href="{{site.baseurl}}authors/#{{author[1].username}}"><h4 class="author-name">{{author[1].name}}</h4></a>
|
140
|
+
<p class="mb4 px3">{{author[1].bio}}</p>
|
141
|
+
</div>
|
142
|
+
{% endif %}
|
143
|
+
{% endfor %}
|
144
|
+
|
145
|
+
<!-- Start Socialbox -->
|
146
|
+
<div class="ampstart-social-box mb4">
|
147
|
+
<amp-social-share type="twitter" aria-label="Share this on Twitter"></amp-social-share>
|
148
|
+
<amp-social-share type="facebook" aria-label="Share this on Facebook" data-param-app_id="145393166088568"></amp-social-share>
|
149
|
+
<amp-social-share type="gplus" aria-label="Share this on Google Plus"></amp-social-share>
|
150
|
+
<amp-social-share type="email" aria-label="Share this with E-mail"></amp-social-share>
|
151
|
+
</div>
|
152
|
+
<!-- End Socialbox -->
|
153
|
+
|
154
|
+
|
155
|
+
{% include footer.html %}
|
156
|
+
|
157
|
+
</main>
|
@@ -1,65 +1,65 @@
|
|
1
|
-
.highlight .hll { background-color: #373b41 }
|
2
|
-
.highlight { background: #1d1f21; color: #c5c8c6 }
|
3
|
-
.highlight .c { color: #969896 } /* Comment */
|
4
|
-
.highlight .err { color: #cc6666 } /* Error */
|
5
|
-
.highlight .k { color: #b294bb } /* Keyword */
|
6
|
-
.highlight .l { color: #de935f } /* Literal */
|
7
|
-
.highlight .n { color: #c5c8c6 } /* Name */
|
8
|
-
.highlight .o { color: #8abeb7 } /* Operator */
|
9
|
-
.highlight .p { color: #c5c8c6 } /* Punctuation */
|
10
|
-
.highlight .cm { color: #969896 } /* Comment.Multiline */
|
11
|
-
.highlight .cp { color: #969896 } /* Comment.Preproc */
|
12
|
-
.highlight .c1 { color: #969896 } /* Comment.Single */
|
13
|
-
.highlight .cs { color: #969896 } /* Comment.Special */
|
14
|
-
.highlight .gd { color: #cc6666 } /* Generic.Deleted */
|
15
|
-
.highlight .ge { font-style: italic } /* Generic.Emph */
|
16
|
-
.highlight .gh { color: #c5c8c6; font-weight: bold } /* Generic.Heading */
|
17
|
-
.highlight .gi { color: #b5bd68 } /* Generic.Inserted */
|
18
|
-
.highlight .gp { color: #969896; font-weight: bold } /* Generic.Prompt */
|
19
|
-
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
20
|
-
.highlight .gu { color: #8abeb7; font-weight: bold } /* Generic.Subheading */
|
21
|
-
.highlight .kc { color: #b294bb } /* Keyword.Constant */
|
22
|
-
.highlight .kd { color: #b294bb } /* Keyword.Declaration */
|
23
|
-
.highlight .kn { color: #8abeb7 } /* Keyword.Namespace */
|
24
|
-
.highlight .kp { color: #b294bb } /* Keyword.Pseudo */
|
25
|
-
.highlight .kr { color: #b294bb } /* Keyword.Reserved */
|
26
|
-
.highlight .kt { color: #f0c674 } /* Keyword.Type */
|
27
|
-
.highlight .ld { color: #b5bd68 } /* Literal.Date */
|
28
|
-
.highlight .m { color: #de935f } /* Literal.Number */
|
29
|
-
.highlight .s { color: #b5bd68 } /* Literal.String */
|
30
|
-
.highlight .na { color: #81a2be } /* Name.Attribute */
|
31
|
-
.highlight .nb { color: #c5c8c6 } /* Name.Builtin */
|
32
|
-
.highlight .nc { color: #f0c674 } /* Name.Class */
|
33
|
-
.highlight .no { color: #cc6666 } /* Name.Constant */
|
34
|
-
.highlight .nd { color: #8abeb7 } /* Name.Decorator */
|
35
|
-
.highlight .ni { color: #c5c8c6 } /* Name.Entity */
|
36
|
-
.highlight .ne { color: #cc6666 } /* Name.Exception */
|
37
|
-
.highlight .nf { color: #81a2be } /* Name.Function */
|
38
|
-
.highlight .nl { color: #c5c8c6 } /* Name.Label */
|
39
|
-
.highlight .nn { color: #f0c674 } /* Name.Namespace */
|
40
|
-
.highlight .nx { color: #81a2be } /* Name.Other */
|
41
|
-
.highlight .py { color: #c5c8c6 } /* Name.Property */
|
42
|
-
.highlight .nt { color: #8abeb7 } /* Name.Tag */
|
43
|
-
.highlight .nv { color: #cc6666 } /* Name.Variable */
|
44
|
-
.highlight .ow { color: #8abeb7 } /* Operator.Word */
|
45
|
-
.highlight .w { color: #c5c8c6 } /* Text.Whitespace */
|
46
|
-
.highlight .mf { color: #de935f } /* Literal.Number.Float */
|
47
|
-
.highlight .mh { color: #de935f } /* Literal.Number.Hex */
|
48
|
-
.highlight .mi { color: #de935f } /* Literal.Number.Integer */
|
49
|
-
.highlight .mo { color: #de935f } /* Literal.Number.Oct */
|
50
|
-
.highlight .sb { color: #b5bd68 } /* Literal.String.Backtick */
|
51
|
-
.highlight .sc { color: #c5c8c6 } /* Literal.String.Char */
|
52
|
-
.highlight .sd { color: #969896 } /* Literal.String.Doc */
|
53
|
-
.highlight .s2 { color: #b5bd68 } /* Literal.String.Double */
|
54
|
-
.highlight .se { color: #de935f } /* Literal.String.Escape */
|
55
|
-
.highlight .sh { color: #b5bd68 } /* Literal.String.Heredoc */
|
56
|
-
.highlight .si { color: #de935f } /* Literal.String.Interpol */
|
57
|
-
.highlight .sx { color: #b5bd68 } /* Literal.String.Other */
|
58
|
-
.highlight .sr { color: #b5bd68 } /* Literal.String.Regex */
|
59
|
-
.highlight .s1 { color: #b5bd68 } /* Literal.String.Single */
|
60
|
-
.highlight .ss { color: #b5bd68 } /* Literal.String.Symbol */
|
61
|
-
.highlight .bp { color: #c5c8c6 } /* Name.Builtin.Pseudo */
|
62
|
-
.highlight .vc { color: #cc6666 } /* Name.Variable.Class */
|
63
|
-
.highlight .vg { color: #cc6666 } /* Name.Variable.Global */
|
64
|
-
.highlight .vi { color: #cc6666 } /* Name.Variable.Instance */
|
65
|
-
.highlight .il { color: #de935f } /* Literal.Number.Integer.Long */
|
1
|
+
.highlight .hll { background-color: #373b41 }
|
2
|
+
.highlight { background: #1d1f21; color: #c5c8c6 }
|
3
|
+
.highlight .c { color: #969896 } /* Comment */
|
4
|
+
.highlight .err { color: #cc6666 } /* Error */
|
5
|
+
.highlight .k { color: #b294bb } /* Keyword */
|
6
|
+
.highlight .l { color: #de935f } /* Literal */
|
7
|
+
.highlight .n { color: #c5c8c6 } /* Name */
|
8
|
+
.highlight .o { color: #8abeb7 } /* Operator */
|
9
|
+
.highlight .p { color: #c5c8c6 } /* Punctuation */
|
10
|
+
.highlight .cm { color: #969896 } /* Comment.Multiline */
|
11
|
+
.highlight .cp { color: #969896 } /* Comment.Preproc */
|
12
|
+
.highlight .c1 { color: #969896 } /* Comment.Single */
|
13
|
+
.highlight .cs { color: #969896 } /* Comment.Special */
|
14
|
+
.highlight .gd { color: #cc6666 } /* Generic.Deleted */
|
15
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
16
|
+
.highlight .gh { color: #c5c8c6; font-weight: bold } /* Generic.Heading */
|
17
|
+
.highlight .gi { color: #b5bd68 } /* Generic.Inserted */
|
18
|
+
.highlight .gp { color: #969896; font-weight: bold } /* Generic.Prompt */
|
19
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
20
|
+
.highlight .gu { color: #8abeb7; font-weight: bold } /* Generic.Subheading */
|
21
|
+
.highlight .kc { color: #b294bb } /* Keyword.Constant */
|
22
|
+
.highlight .kd { color: #b294bb } /* Keyword.Declaration */
|
23
|
+
.highlight .kn { color: #8abeb7 } /* Keyword.Namespace */
|
24
|
+
.highlight .kp { color: #b294bb } /* Keyword.Pseudo */
|
25
|
+
.highlight .kr { color: #b294bb } /* Keyword.Reserved */
|
26
|
+
.highlight .kt { color: #f0c674 } /* Keyword.Type */
|
27
|
+
.highlight .ld { color: #b5bd68 } /* Literal.Date */
|
28
|
+
.highlight .m { color: #de935f } /* Literal.Number */
|
29
|
+
.highlight .s { color: #b5bd68 } /* Literal.String */
|
30
|
+
.highlight .na { color: #81a2be } /* Name.Attribute */
|
31
|
+
.highlight .nb { color: #c5c8c6 } /* Name.Builtin */
|
32
|
+
.highlight .nc { color: #f0c674 } /* Name.Class */
|
33
|
+
.highlight .no { color: #cc6666 } /* Name.Constant */
|
34
|
+
.highlight .nd { color: #8abeb7 } /* Name.Decorator */
|
35
|
+
.highlight .ni { color: #c5c8c6 } /* Name.Entity */
|
36
|
+
.highlight .ne { color: #cc6666 } /* Name.Exception */
|
37
|
+
.highlight .nf { color: #81a2be } /* Name.Function */
|
38
|
+
.highlight .nl { color: #c5c8c6 } /* Name.Label */
|
39
|
+
.highlight .nn { color: #f0c674 } /* Name.Namespace */
|
40
|
+
.highlight .nx { color: #81a2be } /* Name.Other */
|
41
|
+
.highlight .py { color: #c5c8c6 } /* Name.Property */
|
42
|
+
.highlight .nt { color: #8abeb7 } /* Name.Tag */
|
43
|
+
.highlight .nv { color: #cc6666 } /* Name.Variable */
|
44
|
+
.highlight .ow { color: #8abeb7 } /* Operator.Word */
|
45
|
+
.highlight .w { color: #c5c8c6 } /* Text.Whitespace */
|
46
|
+
.highlight .mf { color: #de935f } /* Literal.Number.Float */
|
47
|
+
.highlight .mh { color: #de935f } /* Literal.Number.Hex */
|
48
|
+
.highlight .mi { color: #de935f } /* Literal.Number.Integer */
|
49
|
+
.highlight .mo { color: #de935f } /* Literal.Number.Oct */
|
50
|
+
.highlight .sb { color: #b5bd68 } /* Literal.String.Backtick */
|
51
|
+
.highlight .sc { color: #c5c8c6 } /* Literal.String.Char */
|
52
|
+
.highlight .sd { color: #969896 } /* Literal.String.Doc */
|
53
|
+
.highlight .s2 { color: #b5bd68 } /* Literal.String.Double */
|
54
|
+
.highlight .se { color: #de935f } /* Literal.String.Escape */
|
55
|
+
.highlight .sh { color: #b5bd68 } /* Literal.String.Heredoc */
|
56
|
+
.highlight .si { color: #de935f } /* Literal.String.Interpol */
|
57
|
+
.highlight .sx { color: #b5bd68 } /* Literal.String.Other */
|
58
|
+
.highlight .sr { color: #b5bd68 } /* Literal.String.Regex */
|
59
|
+
.highlight .s1 { color: #b5bd68 } /* Literal.String.Single */
|
60
|
+
.highlight .ss { color: #b5bd68 } /* Literal.String.Symbol */
|
61
|
+
.highlight .bp { color: #c5c8c6 } /* Name.Builtin.Pseudo */
|
62
|
+
.highlight .vc { color: #cc6666 } /* Name.Variable.Class */
|
63
|
+
.highlight .vg { color: #cc6666 } /* Name.Variable.Global */
|
64
|
+
.highlight .vi { color: #cc6666 } /* Name.Variable.Instance */
|
65
|
+
.highlight .il { color: #de935f } /* Literal.Number.Integer.Long */
|