inkstream 0.1.1 → 0.1.3
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/README.md +11 -9
- data/_config.yml +28 -13
- data/_includes/post-comments.html +38 -0
- data/_includes/post-list.html +42 -3
- data/_includes/site-favicons.html +11 -6
- data/_includes/site-footer.html +18 -7
- data/_includes/site-header.html +35 -15
- data/_layouts/page.html +21 -2
- data/_layouts/post.html +34 -168
- data/assets/favicon/android-chrome-192x192.png +0 -0
- data/assets/favicon/android-chrome-512x512.png +0 -0
- data/assets/favicon/apple-touch-icon.png +0 -0
- data/assets/favicon/browserconfig.xml +9 -0
- data/assets/favicon/favicon-16x16.png +0 -0
- data/assets/favicon/favicon-32x32.png +0 -0
- data/assets/favicon/favicon.ico +0 -0
- data/assets/favicon/favicon.svg +1 -0
- data/assets/favicon/mstile-150x150.png +0 -0
- data/assets/favicon/safari-pinned-tab.svg +88 -0
- data/assets/favicon/site.webmanifest +19 -0
- data/assets/images/home-bg.jpg +0 -0
- data/assets/logo/logo.jpg +0 -0
- data/assets/logo/logo.svg +1 -0
- data/assets/resume/resume.pdf +0 -0
- metadata +18 -16
- data/assets/images/about-me.jpg +0 -0
- data/assets/images/blog/blog-post-banner.jpg +0 -0
- data/assets/images/blog/blog-post-thumb-1.jpg +0 -0
- data/assets/images/blog/blog-post-thumb-10.jpg +0 -0
- data/assets/images/blog/blog-post-thumb-11.jpg +0 -0
- data/assets/images/blog/blog-post-thumb-12.jpg +0 -0
- data/assets/images/blog/blog-post-thumb-2.jpg +0 -0
- data/assets/images/blog/blog-post-thumb-3.jpg +0 -0
- data/assets/images/blog/blog-post-thumb-4.jpg +0 -0
- data/assets/images/blog/blog-post-thumb-5.jpg +0 -0
- data/assets/images/blog/blog-post-thumb-6.jpg +0 -0
- data/assets/images/blog/blog-post-thumb-7.jpg +0 -0
- data/assets/images/blog/blog-post-thumb-8.jpg +0 -0
- data/assets/images/blog/blog-post-thumb-9.jpg +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 54962b49053a0726f2d8b90edc96ea3de3e897ed1349542136841b93cac96fe7
|
|
4
|
+
data.tar.gz: '08b3b8ed5ce4890f5c09736a05443acbc2faf515e6bdc65c29961f969e95bbd6'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8c7bb18e1d791a00a70ac456af9d30c6330f61939604698f0361f8b20205e754594d5cbbf2b878e85b2bb054e05b3c2b3a98e27c8467d2c635e6fb41e5f1d4d
|
|
7
|
+
data.tar.gz: decbee6f4dd0b213f7b133821f76756e215957abca0fc2417ed160f03079e41a11220470cd6a180376432a3d33ef9c52587023f1e9b999be3a024e0860531e0c
|
data/README.md
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Inkstream
|
|
2
2
|
|
|
3
3
|
Welcome to a brand new Jekyll theme!
|
|
4
4
|
|
|
5
5
|
**What Is Inkstream?**
|
|
6
6
|
|
|
7
|
-
Inkstream is a Jekyll theme for creating a personal
|
|
7
|
+
Inkstream is a Jekyll theme for creating a personal blogging, embodying the fluidity of ink in the art of writing. It is designed to be a simple, clean, and responsive theme for your personal blog.
|
|
8
8
|
|
|
9
9
|
Preview the theme to see what it looks like, or even use it today. You can also view the theme's [live demo](https://inkstream.netlify.app/).
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
| Home | Blog |
|
|
12
|
+
|:---:|:---:|
|
|
13
|
+
|  |  |
|
|
12
14
|
|
|
13
15
|
**Features**
|
|
14
16
|
|
|
@@ -61,15 +63,15 @@ theme: inkstream
|
|
|
61
63
|
|
|
62
64
|
And then execute:
|
|
63
65
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
66
|
+
```bash
|
|
67
|
+
bundle
|
|
68
|
+
```
|
|
67
69
|
|
|
68
70
|
Or install it yourself as:
|
|
69
71
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
72
|
+
```bash
|
|
73
|
+
gem install inkstream
|
|
74
|
+
```
|
|
73
75
|
|
|
74
76
|
## Usage
|
|
75
77
|
|
data/_config.yml
CHANGED
|
@@ -4,20 +4,25 @@
|
|
|
4
4
|
exclude:
|
|
5
5
|
- README.md
|
|
6
6
|
- LICENSE
|
|
7
|
+
- CODE_OF_CONDUCT.md
|
|
7
8
|
- CNAME
|
|
8
9
|
- Gemfile
|
|
9
10
|
- Gemfile.lock
|
|
10
11
|
- inkstream.gemspec
|
|
11
12
|
- .jekyll-cache
|
|
13
|
+
- demo
|
|
12
14
|
|
|
13
15
|
# 2. Installed Gems
|
|
14
16
|
plugins:
|
|
15
17
|
- jekyll-paginate
|
|
16
18
|
- jekyll-seo-tag
|
|
19
|
+
# - rouge does not work
|
|
20
|
+
# - kramdown
|
|
17
21
|
|
|
18
22
|
# 3. Gem settings
|
|
19
23
|
paginate: 5 # jekyll-paginate > items per page
|
|
20
24
|
paginate_path: blog/:num # jekyll-paginate > blog page
|
|
25
|
+
pinned: false # jekyll-seo-tag > pin the post to the top of the list
|
|
21
26
|
author: MohdIrfan # jekyll-seo-tag > default author
|
|
22
27
|
twitter:
|
|
23
28
|
username: mohdirfan57 # jekyll-seo-tag > Owners twitter username
|
|
@@ -65,7 +70,8 @@ defaults:
|
|
|
65
70
|
encoding: utf-8 # Make sure the encoding is right
|
|
66
71
|
lang: en # Set the site language
|
|
67
72
|
title: 'Inkstream' # Site name or title, also used in jekyll-seo-tag
|
|
68
|
-
logo: '/assets/
|
|
73
|
+
logo: '/assets/logo/logo.jpg' # Site logo, also used in jekyll-seo-tag
|
|
74
|
+
home-bg: '/assets/images/home-bg.jpg' # Home background image
|
|
69
75
|
description: 'Inkstream is a sleek and modern Jekyll theme tailored for bloggers seeking a seamless platform to express their ideas and stories. With its elegant design and intuitive features, Inkstream facilitates the continuous flow of content creation, empowering users to share their thoughts effortlessly.' # Site description and default description, also used in jekyll-seo-tag
|
|
70
76
|
url: 'https://inkstream.netlify.app' # Site url, also used in jekyll-seo-tag
|
|
71
77
|
baseurl: ''
|
|
@@ -76,14 +82,14 @@ css_inline: false # Will insert all styles into a single <style> block in the <h
|
|
|
76
82
|
|
|
77
83
|
# 8. Site favicons & manifest icons
|
|
78
84
|
favicons: # Favicons are also used in the manifest file. Syntax is 'size: path'
|
|
79
|
-
16: '/assets/
|
|
80
|
-
32: '/assets/
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
85
|
+
'16': '/assets/favicon/favicon-16x16.png'
|
|
86
|
+
'32': '/assets/favicon/favicon-32x32.png'
|
|
87
|
+
'150': '/assets/favicon/mstile-150x150.png'
|
|
88
|
+
'180': '/assets/favicon/apple-touch-icon.png'
|
|
89
|
+
'192': '/assets/favicon/android-chrome-192x192.png'
|
|
90
|
+
'512': '/assets/favicon/android-chrome-512x512.png'
|
|
91
|
+
webmanifest: '/assets/favicon/site.webmanifest'
|
|
92
|
+
safari: '/assets/favicon/safari-pinned-tab.svg'
|
|
87
93
|
|
|
88
94
|
# 9. Site navigation
|
|
89
95
|
navigation_header:
|
|
@@ -99,13 +105,22 @@ navigation_header:
|
|
|
99
105
|
|
|
100
106
|
navigation_footer:
|
|
101
107
|
- title: Mohd Irfan
|
|
102
|
-
url: https://mdirfan
|
|
103
|
-
|
|
108
|
+
url: https://github.com/dev-mdirfan/
|
|
109
|
+
|
|
110
|
+
# 10. Your Personal Info (Social links - Appears in sidebar)
|
|
111
|
+
author:
|
|
112
|
+
name: Sarah Parker # Your name (required)
|
|
113
|
+
bio: 'A passionate web developer and designer.' # Short bio or description, You can also provide a link to the about page. (required)
|
|
114
|
+
profession: 'Web Developer' # Your profession (optional)
|
|
115
|
+
location: 'India' # Your location (optional)
|
|
116
|
+
email: your@gmail.com # Your email address (optional)
|
|
117
|
+
social_links: # Set the urls then uncomment and comment out as desired
|
|
104
118
|
Twitter: https://twitter.com/mohdirfan57
|
|
105
119
|
LinkedIn: https://www.linkedin.com/in/mdirfan57
|
|
106
120
|
GitHub: https://github.com/dev-mdirfan
|
|
107
|
-
|
|
108
|
-
|
|
121
|
+
Stackoverflow: https://stackoverflow.com/users/13520260/mohd-irfan
|
|
122
|
+
Codepen: https://codepen.io/mohdirfan57
|
|
123
|
+
download_resume: '/assets/resume/resume.pdf' # Add the path to your resume
|
|
109
124
|
# sharing_links: # Appear at the bottom of single blog posts, add as desired. The value can be 'true' or the desired button colour
|
|
110
125
|
# Twitter: '#0d94e7'
|
|
111
126
|
# facebook: '#3B5998'
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<div class="blog-comments-section">
|
|
2
|
+
<div id="disqus_thread"></div>
|
|
3
|
+
<script>
|
|
4
|
+
/**
|
|
5
|
+
* RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT
|
|
6
|
+
* THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR
|
|
7
|
+
* PLATFORM OR CMS.
|
|
8
|
+
*
|
|
9
|
+
* LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT:
|
|
10
|
+
* https://disqus.com/admin/universalcode/#configuration-variables
|
|
11
|
+
*/
|
|
12
|
+
/*
|
|
13
|
+
var disqus_config = function () {
|
|
14
|
+
// Replace PAGE_URL with your page's canonical URL variable
|
|
15
|
+
this.page.url = PAGE_URL;
|
|
16
|
+
|
|
17
|
+
// Replace PAGE_IDENTIFIER with your page's unique identifier variable
|
|
18
|
+
this.page.identifier = PAGE_IDENTIFIER;
|
|
19
|
+
};
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
(function () { // REQUIRED CONFIGURATION VARIABLE: EDIT THE SHORTNAME BELOW
|
|
23
|
+
var d = document, s = d.createElement('script');
|
|
24
|
+
|
|
25
|
+
// IMPORTANT: Replace 3wmthemes with your forum shortname!
|
|
26
|
+
s.src = 'https://3wmthemes.disqus.com/embed.js';
|
|
27
|
+
|
|
28
|
+
s.setAttribute('data-timestamp', +new Date());
|
|
29
|
+
(d.head || d.body).appendChild(s);
|
|
30
|
+
})();
|
|
31
|
+
</script>
|
|
32
|
+
<noscript>
|
|
33
|
+
Please enable JavaScript to view the
|
|
34
|
+
<a href="https://disqus.com/?ref_noscript" rel="nofollow">
|
|
35
|
+
comments powered by Disqus.
|
|
36
|
+
</a>
|
|
37
|
+
</noscript>
|
|
38
|
+
</div><!--//blog-comments-section-->
|
data/_includes/post-list.html
CHANGED
|
@@ -1,9 +1,47 @@
|
|
|
1
|
+
{% if page.url == "/blog/" %}
|
|
2
|
+
{% for post in site.posts %}
|
|
3
|
+
{% if post.pinned == true %}
|
|
4
|
+
{% capture words %}
|
|
5
|
+
{{ post.content | number_of_words }}
|
|
6
|
+
{% endcapture %}
|
|
7
|
+
<div class="card my-4 shadow-lg">
|
|
8
|
+
<div class="d-flex justify-content-between">
|
|
9
|
+
<!-- pinned -->
|
|
10
|
+
<small class="text-muted position-absolute" style="top: 10px; left: 10px; z-index: 1;">
|
|
11
|
+
<span class="badge-warning rounded">📌 <strong>Pinned</strong> </span>
|
|
12
|
+
</small>
|
|
13
|
+
<img class="card-img-top" src="{{ post.image | relative_url }}" alt="{{ post.title }}"
|
|
14
|
+
style="width: 250px; object-fit: cover;">
|
|
15
|
+
<div class="card-body">
|
|
16
|
+
<h3 class="card-title">
|
|
17
|
+
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
|
|
18
|
+
</h3>
|
|
19
|
+
<p class="card-text">{{ post.excerpt | markdownify | truncatewords: 42 }}</p>
|
|
20
|
+
<a href="{{ site.baseurl }}{{ post.url }}" class="btn btn-primary">Read more →</a>
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
23
|
+
|
|
24
|
+
<div class="card-footer text-muted d-flex justify-content-between">
|
|
25
|
+
<span class="date">Published on {{ post.date | date: "%b %-d, %Y" }}</span>
|
|
26
|
+
<span class="comment"><a href="#">4 comments</a></span>
|
|
27
|
+
<span class="time align-content-end">
|
|
28
|
+
<i class="fas fa-clock fa-fw mr-1"></i>
|
|
29
|
+
{{ words | divided_by: 180 | append: ' min read' }} •
|
|
30
|
+
{{ words }} words
|
|
31
|
+
</span>
|
|
32
|
+
</div>
|
|
33
|
+
</div>
|
|
34
|
+
{% endif %}
|
|
35
|
+
{% endfor %}
|
|
36
|
+
{% endif %}
|
|
37
|
+
|
|
1
38
|
{% if paginator.posts %}
|
|
2
39
|
{% for page in paginator.posts %}
|
|
40
|
+
{% unless page.pinned %}
|
|
3
41
|
{% capture words %}
|
|
4
42
|
{{ page.content | number_of_words }}
|
|
5
43
|
{% endcapture %}
|
|
6
|
-
<div class="card
|
|
44
|
+
<div class="card my-4 shadow-lg">
|
|
7
45
|
<div class="d-flex justify-content-between">
|
|
8
46
|
<img class="card-img-top" src="{{ page.image | relative_url }}" alt="{{ page.title }}"
|
|
9
47
|
style="width: 250px; object-fit: cover;">
|
|
@@ -21,11 +59,11 @@
|
|
|
21
59
|
<span class="comment"><a href="#">4 comments</a></span>
|
|
22
60
|
<span class="time align-content-end">
|
|
23
61
|
<i class="fas fa-clock fa-fw mr-1"></i>{{ words | divided_by: 180 | append: ' min read' }} • {{ words
|
|
24
|
-
}}
|
|
25
|
-
words
|
|
62
|
+
}} words
|
|
26
63
|
</span>
|
|
27
64
|
</div>
|
|
28
65
|
</div>
|
|
66
|
+
{% endunless %}
|
|
29
67
|
{% endfor %}
|
|
30
68
|
{% include post-pagination.html %}
|
|
31
69
|
{% else %}
|
|
@@ -56,4 +94,5 @@
|
|
|
56
94
|
</div>
|
|
57
95
|
</div>
|
|
58
96
|
{% endfor %}
|
|
97
|
+
{% include post-pagination.html %}
|
|
59
98
|
{% endif %}
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{% if site.favicons %}
|
|
2
|
-
{%
|
|
3
|
-
<link rel="icon"
|
|
4
|
-
<link rel="
|
|
5
|
-
{
|
|
6
|
-
{
|
|
7
|
-
<link rel="
|
|
2
|
+
{% assign icon = site.favicons %}
|
|
3
|
+
<link rel="apple-touch-icon" sizes="180x180" href="{{ icon.180 | relative_url }}">
|
|
4
|
+
<link rel="icon" type="image/png" sizes="32x32" href="{{ icon.32 | relative_url }}">
|
|
5
|
+
<link rel="icon" type="image/png" sizes="16x16" href="{{ icon.16 | relative_url }}">
|
|
6
|
+
<link rel="manifest" href="{{ icon.webmanifest | relative_url }}">
|
|
7
|
+
<link rel="mask-icon" href="{{ icon.safari | relative_url }}" color="#5bbad5">
|
|
8
|
+
<meta name="msapplication-TileColor" content="#da532c">
|
|
9
|
+
<meta name="theme-color" content="#ffffff">
|
|
10
|
+
{% else %}
|
|
11
|
+
<link rel="shortcut icon" href="{{ site.avatarurl + '?s=32' | default: site.logo | relative_url }}">
|
|
12
|
+
{% endif %}
|
data/_includes/site-footer.html
CHANGED
|
@@ -1,12 +1,23 @@
|
|
|
1
1
|
<footer class="footer text-center py-2 theme-bg-dark" style="position: fixed; right: 0; left: 280px; bottom: 0;">
|
|
2
2
|
{% if site.navigation_footer %}
|
|
3
|
-
<
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
3
|
+
<div class="d-flex mx-3 justify-content-between">
|
|
4
|
+
<small class="copyright">
|
|
5
|
+
© <a href="{{ site.url }}">{{ site.title }}</a> {{ site.time | date: '%Y' }}
|
|
6
|
+
</small>
|
|
7
|
+
<small class="text-center" style="right: 0;">
|
|
8
|
+
<a href="{{ site.repo }}" target="_blank">
|
|
9
|
+
<i class="fab fa-github-alt fa-fw"></i>
|
|
10
|
+
Fork Repo
|
|
11
|
+
</a>
|
|
12
|
+
</small>
|
|
13
|
+
<small class="copyright">
|
|
14
|
+
Created by
|
|
15
|
+
<a href="{{ site.navigation_footer[0].url }}" target="_blank">
|
|
16
|
+
{{ site.navigation_footer[0].title }}
|
|
17
|
+
</a> for developers <i class="fas fa-heart" style="color: #e62406;"></i>
|
|
18
|
+
</small>
|
|
19
|
+
</div>
|
|
9
20
|
{% else %}
|
|
10
|
-
|
|
21
|
+
{% include site-footer-default.html %}
|
|
11
22
|
{% endif %}
|
|
12
23
|
</footer>
|
data/_includes/site-header.html
CHANGED
|
@@ -9,26 +9,45 @@
|
|
|
9
9
|
<div id="navigation" class="collapse navbar-collapse flex-column">
|
|
10
10
|
<!-- Profile Section Start -->
|
|
11
11
|
<div class="profile-section pt-3 pt-lg-0">
|
|
12
|
-
<img class="profile-image mb-3 rounded-circle mx-auto"
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
<img class="profile-image mb-3 rounded-circle mx-auto" src="{{ site.logo | relaive_url }}" alt="image">
|
|
13
|
+
<h3 class="blog-name pt-2 mb-3"><a href="{{ site.navigation_header[0].url }}">{{ site.title }}'s
|
|
14
|
+
Blog</a></h3>
|
|
15
15
|
|
|
16
16
|
<div class="bio mb-3">
|
|
17
|
-
Hi, my name is
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
17
|
+
Hi, my name is {{ site.author.name }}.
|
|
18
|
+
<p>
|
|
19
|
+
{{ site.author.bio }}
|
|
20
|
+
</p>
|
|
21
|
+
<p>I am a {{ site.author.profession }}.</p>
|
|
22
|
+
<p>
|
|
23
|
+
<strong>Email: </strong><a href="mailto:{{ site.email }}">
|
|
24
|
+
{{ site.author.email }}
|
|
25
|
+
</a>
|
|
26
|
+
</p>
|
|
23
27
|
</div>
|
|
24
28
|
<!-- Bio Section Start-->
|
|
25
29
|
<ul class="social-list list-inline py-3 mx-auto">
|
|
26
30
|
<!-- Social List -->
|
|
27
|
-
|
|
28
|
-
<li class="list-inline-item"><a href="
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
31
|
+
{% if site.social_links.Twitter %}
|
|
32
|
+
<li class="list-inline-item"><a href="{{ site.social_links.Twitter }}"><i
|
|
33
|
+
class="fab fa-twitter fa-fw"></i></a></li>
|
|
34
|
+
{% endif %}
|
|
35
|
+
{% if site.social_links.LinkedIn %}
|
|
36
|
+
<li class="list-inline-item"><a href="{{ site.social_links.LinkedIn }}"><i
|
|
37
|
+
class="fab fa-linkedin-in fa-fw"></i></a></li>
|
|
38
|
+
{% endif %}
|
|
39
|
+
{% if site.social_links.Github %}
|
|
40
|
+
<li class="list-inline-item"><a href="{{ site.social_links.GitHub }}"><i
|
|
41
|
+
class="fab fa-github-alt fa-fw"></i></a></li>
|
|
42
|
+
{% endif %}
|
|
43
|
+
{% if site.social_links.Stackoverflow %}
|
|
44
|
+
<li class="list-inline-item"><a href="{{ site.social_links.Stackoverflow }}"><i
|
|
45
|
+
class="fab fa-stack-overflow fa-fw"></i></a></li>
|
|
46
|
+
{% endif %}
|
|
47
|
+
{% if site.social_links.Codepen %}
|
|
48
|
+
<li class="list-inline-item"><a href="{{ site.social_links.Codepen }}"><i
|
|
49
|
+
class="fab fa-codepen fa-fw"></i></a></li>
|
|
50
|
+
{% endif %}
|
|
32
51
|
</ul>
|
|
33
52
|
<!-- Bio Section end-->
|
|
34
53
|
<hr style="background: white;">
|
|
@@ -39,7 +58,8 @@
|
|
|
39
58
|
{% include nav-header.html %}
|
|
40
59
|
|
|
41
60
|
<div class="my-2 my-md-3">
|
|
42
|
-
<a class="btn btn-primary" href="
|
|
61
|
+
<a class="btn btn-primary" href="{{ site.download_resume | relative_url}}" target="_blank"
|
|
62
|
+
download="{{ site.title }}-resume">Download Resume</a>
|
|
43
63
|
</div>
|
|
44
64
|
</div>
|
|
45
65
|
</nav>
|
data/_layouts/page.html
CHANGED
|
@@ -2,13 +2,32 @@
|
|
|
2
2
|
layout: default
|
|
3
3
|
---
|
|
4
4
|
|
|
5
|
+
<style>
|
|
6
|
+
.theme-bg-image {
|
|
7
|
+
background-image: url("{{ site.home-bg | relative_url }}");
|
|
8
|
+
/* Replace 'path/to/your/image.jpg' with the actual path to your image */
|
|
9
|
+
background-size: cover;
|
|
10
|
+
background-position: center;
|
|
11
|
+
/* shadow */
|
|
12
|
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.theme-bg-image .container {
|
|
16
|
+
background-color: rgba(255, 255, 255, 0.8);
|
|
17
|
+
/* Adjust the alpha value to change the opacity of the background */
|
|
18
|
+
padding: 20px;
|
|
19
|
+
border-radius: 10px;
|
|
20
|
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
21
|
+
/* Adjust the shadow as needed */
|
|
22
|
+
}
|
|
23
|
+
</style>
|
|
24
|
+
|
|
5
25
|
<!-- Header -->
|
|
6
26
|
{% include site-header.html %}
|
|
7
27
|
|
|
8
28
|
<!-- Main Wrapper Start -->
|
|
9
29
|
<div class="main-wrapper">
|
|
10
|
-
|
|
11
|
-
<section class="cta-section theme-bg-light py-5">
|
|
30
|
+
<section class="cta-section theme-bg-image py-5">
|
|
12
31
|
<div class="container text-center">
|
|
13
32
|
<h2 class="heading">Inkstream - Jekyll Blog Theme Made For Developers</h2>
|
|
14
33
|
<div class="intro">Welcome to my blog. Subscribe and get my latest blog post in your inbox.</div>
|
data/_layouts/post.html
CHANGED
|
@@ -10,179 +10,47 @@ layout: default
|
|
|
10
10
|
<div class="container">
|
|
11
11
|
<header class="blog-post-header">
|
|
12
12
|
<h2 class="title mb-2">{{ page.title }}</h2>
|
|
13
|
-
<div class="meta mb-3"
|
|
14
|
-
|
|
13
|
+
<div class="meta mb-3">
|
|
14
|
+
<span class="date">
|
|
15
|
+
{% assign current_date = site.time | date: "%s" %}
|
|
16
|
+
{% assign post_date = page.date | date: "%s" %}
|
|
17
|
+
|
|
18
|
+
{% assign time_difference = current_date | minus: post_date %}
|
|
19
|
+
{% assign seconds_in_a_day = 86400 %}
|
|
20
|
+
{% assign seconds_in_a_month = 2628000 %}
|
|
21
|
+
{% assign seconds_in_a_year = 31536000 %}
|
|
22
|
+
|
|
23
|
+
{% if time_difference < seconds_in_a_day %} Posted {{ time_difference | divided_by: 60 | round
|
|
24
|
+
}} minutes ago {% elsif time_difference < seconds_in_a_month %} Posted {{ time_difference |
|
|
25
|
+
divided_by: seconds_in_a_day | round }} days ago {% elsif time_difference <
|
|
26
|
+
seconds_in_a_year %} Posted {{ time_difference | divided_by: seconds_in_a_month | round }}
|
|
27
|
+
months ago {% else %} Posted {{ time_difference | divided_by: seconds_in_a_year | round }}
|
|
28
|
+
years ago {% endif %} </span>
|
|
29
|
+
{% capture words %}
|
|
30
|
+
{{ page.content | number_of_words }}
|
|
31
|
+
{% endcapture %}
|
|
32
|
+
<span class="time">{{ words | divided_by: 180 }} min read</span>
|
|
33
|
+
<span class="time">{{ words }} words</span>
|
|
34
|
+
<span class="comment">
|
|
35
|
+
<a href="#">4 comments</a>
|
|
36
|
+
</span>
|
|
37
|
+
</div>
|
|
15
38
|
</header>
|
|
16
39
|
|
|
17
40
|
<div class="blog-post-body">
|
|
18
41
|
<figure class="blog-banner">
|
|
19
|
-
<a href="
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
42
|
+
<a href="{{ page.image | relative_url }}">
|
|
43
|
+
<img class="img-fluid rounded-left rounded-right shadow-sm" src="{{ page.image | relative_url }}"
|
|
44
|
+
alt="{{ page.title }}" style="max-height: 400px; width: 100%;">
|
|
45
|
+
</a>
|
|
46
|
+
<figcaption class="mt-2 text-center image-caption">Image: {{ page.title | capitalize }}
|
|
47
|
+
</figcaption>
|
|
24
48
|
</figure>
|
|
25
|
-
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean
|
|
26
|
-
massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec
|
|
27
|
-
quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.
|
|
28
|
-
Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut,
|
|
29
|
-
imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt.
|
|
30
|
-
Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula,
|
|
31
|
-
porttitor eu, consequat vitae, eleifend ac, enim. </p>
|
|
32
|
-
|
|
33
|
-
<h3 class="mt-5 mb-3">Code Block Example</h3>
|
|
34
|
-
<p>You can get more info at <a href="https://highlightjs.org/"
|
|
35
|
-
target="_blank">https://highlightjs.org/</a>. Lorem ipsum dolor sit amet, consectetuer
|
|
36
|
-
adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et
|
|
37
|
-
magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque
|
|
38
|
-
eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet
|
|
39
|
-
nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam
|
|
40
|
-
dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi.
|
|
41
|
-
Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac,
|
|
42
|
-
enim. </p>
|
|
43
|
-
<pre>
|
|
44
|
-
<code>
|
|
45
|
-
function $initHighlight(block, cls) {
|
|
46
|
-
try {
|
|
47
|
-
if (cls.search(/\bno\-highlight\b/) != -1)
|
|
48
|
-
return process(block, true, 0x0F) +
|
|
49
|
-
` class="${cls}"`;
|
|
50
|
-
} catch (e) {
|
|
51
|
-
/* handle exception */
|
|
52
|
-
}
|
|
53
|
-
for (var i = 0 / 2; i < classes.length; i++) {
|
|
54
|
-
if (checkCondition(classes[i]) === undefined)
|
|
55
|
-
console.log('undefined');
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
export $initHighlight;
|
|
60
|
-
</code>
|
|
61
|
-
</pre>
|
|
62
|
-
<h3 class="mt-5 mb-3">Typography</h3>
|
|
63
|
-
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean
|
|
64
|
-
massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>
|
|
65
|
-
<h5 class="my-3">Bullet Points:</h5>
|
|
66
|
-
<ul class="mb-5">
|
|
67
|
-
<li class="mb-2">Lorem ipsum dolor sit amet consectetuer.</li>
|
|
68
|
-
<li class="mb-2">Aenean commodo ligula eget dolor.</li>
|
|
69
|
-
<li class="mb-2">Aenean massa cum sociis natoque penatibus.</li>
|
|
70
|
-
</ul>
|
|
71
|
-
<ol class="mb-5">
|
|
72
|
-
<li class="mb-2">Lorem ipsum dolor sit amet consectetuer.</li>
|
|
73
|
-
<li class="mb-2">Aenean commodo ligula eget dolor.</li>
|
|
74
|
-
<li class="mb-2">Aenean massa cum sociis natoque penatibus.</li>
|
|
75
|
-
</ol>
|
|
76
|
-
<h5 class="my-3">Quote Example:</h5>
|
|
77
|
-
<blockquote class="blockquote m-lg-5 py-3 pl-4 px-lg-5">
|
|
78
|
-
<p class="mb-2">You might not think that programmers are artists, but programming is an extremely
|
|
79
|
-
creative profession. It's logic-based creativity.</p>
|
|
80
|
-
<footer class="blockquote-footer">John Romero</footer>
|
|
81
|
-
</blockquote>
|
|
82
|
-
|
|
83
|
-
<h5 class="my-3">Table Example:</h5>
|
|
84
|
-
<table class="table table-striped my-5">
|
|
85
|
-
<thead>
|
|
86
|
-
<tr>
|
|
87
|
-
<th scope="col">#</th>
|
|
88
|
-
<th scope="col">First</th>
|
|
89
|
-
<th scope="col">Last</th>
|
|
90
|
-
<th scope="col">Handle</th>
|
|
91
|
-
</tr>
|
|
92
|
-
</thead>
|
|
93
|
-
<tbody>
|
|
94
|
-
<tr>
|
|
95
|
-
<th scope="row">1</th>
|
|
96
|
-
<td>Mark</td>
|
|
97
|
-
<td>Otto</td>
|
|
98
|
-
<td>@mdo</td>
|
|
99
|
-
</tr>
|
|
100
|
-
<tr>
|
|
101
|
-
<th scope="row">2</th>
|
|
102
|
-
<td>Jacob</td>
|
|
103
|
-
<td>Thornton</td>
|
|
104
|
-
<td>@fat</td>
|
|
105
|
-
</tr>
|
|
106
|
-
<tr>
|
|
107
|
-
<th scope="row">3</th>
|
|
108
|
-
<td>Larry</td>
|
|
109
|
-
<td>the Bird</td>
|
|
110
|
-
<td>@twitter</td>
|
|
111
|
-
</tr>
|
|
112
|
-
</tbody>
|
|
113
|
-
</table>
|
|
114
|
-
|
|
115
|
-
<h5 class="mb-3">Embed A Tweet:</h5>
|
|
116
|
-
|
|
117
|
-
<blockquote class="twitter-tweet" data-lang="en">
|
|
118
|
-
<p lang="en" dir="ltr">1969:<br>-what're you doing with that 2KB of RAM?<br>-sending people to
|
|
119
|
-
the moon<br><br>2017:<br>-what're you doing with that 1.5GB of RAM?<br>-running Slack</p>
|
|
120
|
-
— I Am Devloper (@iamdevloper) <a
|
|
121
|
-
href="https://twitter.com/iamdevloper/status/926458505355235328?ref_src=twsrc%5Etfw">November 3,
|
|
122
|
-
2017</a>
|
|
123
|
-
</blockquote>
|
|
124
|
-
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
<h3 class="mt-5 mb-3">Video Example</h3>
|
|
129
|
-
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean
|
|
130
|
-
massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec
|
|
131
|
-
quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. </p>
|
|
132
|
-
|
|
133
|
-
<div class="embed-responsive embed-responsive-16by9">
|
|
134
|
-
<iframe width="560" height="315" src="https://www.youtube.com/embed/hnCmSXCZEpU" frameborder="0"
|
|
135
|
-
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
|
|
136
|
-
allowfullscreen></iframe>
|
|
137
|
-
</div>
|
|
138
49
|
|
|
50
|
+
{{ content | markdownify}}
|
|
139
51
|
</div>
|
|
140
52
|
|
|
141
|
-
|
|
142
|
-
<a class="nav-link-prev nav-item nav-link rounded-left" href="index.html">Previous<i
|
|
143
|
-
class="arrow-prev fas fa-long-arrow-alt-left"></i></a>
|
|
144
|
-
<a class="nav-link-next nav-item nav-link rounded-right" href="blog-list.html">Next<i
|
|
145
|
-
class="arrow-next fas fa-long-arrow-alt-right"></i></a>
|
|
146
|
-
</nav>
|
|
147
|
-
|
|
148
|
-
<div class="blog-comments-section">
|
|
149
|
-
<div id="disqus_thread"></div>
|
|
150
|
-
<script>
|
|
151
|
-
/**
|
|
152
|
-
* RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT
|
|
153
|
-
* THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR
|
|
154
|
-
* PLATFORM OR CMS.
|
|
155
|
-
*
|
|
156
|
-
* LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT:
|
|
157
|
-
* https://disqus.com/admin/universalcode/#configuration-variables
|
|
158
|
-
*/
|
|
159
|
-
/*
|
|
160
|
-
var disqus_config = function () {
|
|
161
|
-
// Replace PAGE_URL with your page's canonical URL variable
|
|
162
|
-
this.page.url = PAGE_URL;
|
|
163
|
-
|
|
164
|
-
// Replace PAGE_IDENTIFIER with your page's unique identifier variable
|
|
165
|
-
this.page.identifier = PAGE_IDENTIFIER;
|
|
166
|
-
};
|
|
167
|
-
*/
|
|
168
|
-
|
|
169
|
-
(function () { // REQUIRED CONFIGURATION VARIABLE: EDIT THE SHORTNAME BELOW
|
|
170
|
-
var d = document, s = d.createElement('script');
|
|
171
|
-
|
|
172
|
-
// IMPORTANT: Replace 3wmthemes with your forum shortname!
|
|
173
|
-
s.src = 'https://3wmthemes.disqus.com/embed.js';
|
|
174
|
-
|
|
175
|
-
s.setAttribute('data-timestamp', +new Date());
|
|
176
|
-
(d.head || d.body).appendChild(s);
|
|
177
|
-
})();
|
|
178
|
-
</script>
|
|
179
|
-
<noscript>
|
|
180
|
-
Please enable JavaScript to view the
|
|
181
|
-
<a href="https://disqus.com/?ref_noscript" rel="nofollow">
|
|
182
|
-
comments powered by Disqus.
|
|
183
|
-
</a>
|
|
184
|
-
</noscript>
|
|
185
|
-
</div><!--//blog-comments-section-->
|
|
53
|
+
{% include post-comments.html %}
|
|
186
54
|
|
|
187
55
|
</div><!--//container-->
|
|
188
56
|
</article>
|
|
@@ -194,8 +62,6 @@ export $initHighlight;
|
|
|
194
62
|
</div>
|
|
195
63
|
<!-- Main Wrapper-->
|
|
196
64
|
|
|
197
|
-
{
|
|
198
|
-
|
|
199
|
-
{% include post-pagination.html %}
|
|
65
|
+
<!-- {% include post-pagination.html %} -->
|
|
200
66
|
|
|
201
67
|
{% include site-footer.html %}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 340.4 264.63"><defs><clipPath id="aa12d1a56-b4a7-412f-992f-571eb6828cf6"><path fill="none" clip-rule="evenodd" d="M170.2 0l85.1 132.31 85.1 132.32H198.24l46.43-72.19L170.2 76.65 49.3 264.63H0l85.1-132.32L170.2 0z"/></clipPath></defs><g><g><g clip-path="url(#aa12d1a56-b4a7-412f-992f-571eb6828cf6)"><path fill="#ed6a00" d="M0 0h.66v264.63H0z"/><path fill="#ed6a00" d="M0 0h1.99v264.63H0z"/><path fill="#ed6a00" d="M1.33 0h1.99v264.63H1.33z"/><path fill="#ed6c00" d="M2.66 0h1.99v264.63H2.66z"/><path fill="#ed6c00" d="M3.99 0h1.99v264.63H3.99z"/><path fill="#ed6c00" d="M5.32 0h1.99v264.63H5.32z"/><path fill="#ed6c00" d="M6.65 0h1.99v264.63H6.65z"/><path fill="#ed6f00" d="M7.98 0h1.99v264.63H7.98z"/><path fill="#ed6f00" d="M9.31 0h1.99v264.63H9.31z"/><path fill="#ed6f00" d="M10.64 0h1.99v264.63h-1.99z"/><path fill="#ed6f00" d="M11.97 0h1.99v264.63h-1.99z"/><path fill="#ed6f00" d="M13.3 0h1.99v264.63H13.3z"/><path fill="#ed6f00" d="M14.63 0h1.99v264.63h-1.99z"/><path fill="#ed7100" d="M15.96 0h1.99v264.63h-1.99z"/><path fill="#ed7100" d="M17.29 0h1.99v264.63h-1.99z"/><path fill="#ed7100" d="M18.62 0h1.99v264.63h-1.99z"/><path fill="#ed7100" d="M19.95 0h1.99v264.63h-1.99z"/><path fill="#ee7300" d="M21.27 0h1.99v264.63h-1.99z"/><path fill="#ee7300" d="M22.6 0h1.99v264.63H22.6z"/><path fill="#ee7300" d="M23.93 0h1.99v264.63h-1.99z"/><path fill="#ee7300" d="M25.26 0h1.99v264.63h-1.99z"/><path fill="#ee7300" d="M26.59 0h1.99v264.63h-1.99z"/><path fill="#ee7300" d="M27.92 0h1.99v264.63h-1.99z"/><path fill="#ee7500" d="M29.25 0h1.99v264.63h-1.99z"/><path fill="#ee7500" d="M30.58 0h1.99v264.63h-1.99z"/><path fill="#ee7500" d="M31.91 0h1.99v264.63h-1.99z"/><path fill="#ee7500" d="M33.24 0h1.99v264.63h-1.99z"/><path fill="#ee7800" d="M34.57 0h1.99v264.63h-1.99z"/><path fill="#ee7800" d="M35.9 0h1.99v264.63H35.9z"/><path fill="#ee7800" d="M37.23 0h1.99v264.63h-1.99z"/><path fill="#ee7800" d="M38.56 0h1.99v264.63h-1.99z"/><path fill="#ee7800" d="M39.89 0h1.99v264.63h-1.99z"/><path fill="#ee7800" d="M41.22 0h1.99v264.63h-1.99z"/><path fill="#ef7a00" d="M42.55 0h1.99v264.63h-1.99z"/><path fill="#ef7a00" d="M43.88 0h1.99v264.63h-1.99z"/><path fill="#ef7a00" d="M45.21 0h1.99v264.63h-1.99z"/><path fill="#ef7a00" d="M46.54 0h1.99v264.63h-1.99z"/><path fill="#ef7a00" d="M47.87 0h1.99v264.63h-1.99z"/><path fill="#ef7a00" d="M49.2 0h1.99v264.63H49.2z"/><path fill="#ef7c00" d="M50.53 0h1.99v264.63h-1.99z"/><path fill="#ef7c00" d="M51.86 0h1.99v264.63h-1.99z"/><path fill="#ef7c00" d="M53.19 0h1.99v264.63h-1.99z"/><path fill="#ef7c00" d="M54.52 0h1.99v264.63h-1.99z"/><path fill="#ef7e00" d="M55.85 0h1.99v264.63h-1.99z"/><path fill="#ef7e00" d="M57.18 0h1.99v264.63h-1.99z"/><path fill="#ef7e00" d="M58.51 0h1.99v264.63h-1.99z"/><path fill="#ef7e00" d="M59.84 0h1.99v264.63h-1.99z"/><path fill="#ef7e00" d="M61.17 0h1.99v264.63h-1.99z"/><path fill="#ef7e00" d="M62.5 0h1.99v264.63H62.5z"/><path fill="#f08000" d="M63.82 0h1.99v264.63h-1.99z"/><path fill="#f08000" d="M65.15 0h1.99v264.63h-1.99z"/><path fill="#f08000" d="M66.48 0h1.99v264.63h-1.99z"/><path fill="#f08300" d="M67.81 0h1.99v264.63h-1.99z"/><path fill="#f08300" d="M69.14 0h1.99v264.63h-1.99z"/><path fill="#f08300" d="M70.47 0h1.99v264.63h-1.99z"/><path fill="#f08300" d="M71.8 0h1.99v264.63H71.8z"/><path fill="#f08300" d="M73.13 0h1.99v264.63h-1.99z"/><path fill="#f08300" d="M74.46 0h1.99v264.63h-1.99z"/><path fill="#f08500" d="M75.79 0h1.99v264.63h-1.99z"/><path fill="#f08500" d="M77.12 0h1.99v264.63h-1.99z"/><path fill="#f08500" d="M78.45 0h1.99v264.63h-1.99z"/><path fill="#f08500" d="M79.78 0h1.99v264.63h-1.99z"/><path fill="#f18700" d="M81.11 0h1.99v264.63h-1.99z"/><path fill="#f18700" d="M82.44 0h1.99v264.63h-1.99z"/><path fill="#f18700" d="M83.77 0h1.99v264.63h-1.99z"/><path fill="#f18700" d="M85.1 0h1.99v264.63H85.1z"/><path fill="#f18700" d="M86.43 0h1.99v264.63h-1.99z"/><path fill="#f18700" d="M87.76 0h1.99v264.63h-1.99z"/><path fill="#f18900" d="M89.09 0h1.99v264.63h-1.99z"/><path fill="#f18900" d="M90.42 0h1.99v264.63h-1.99z"/><path fill="#f18900" d="M91.75 0h1.99v264.63h-1.99z"/><path fill="#f18900" d="M93.08 0h1.99v264.63h-1.99z"/><path fill="#f18b00" d="M94.41 0h1.99v264.63h-1.99z"/><path fill="#f18b00" d="M95.74 0h1.99v264.63h-1.99z"/><path fill="#f18b00" d="M97.07 0h1.99v264.63h-1.99z"/><path fill="#f18b00" d="M98.4 0h1.99v264.63H98.4z"/><path fill="#f18b00" d="M99.73 0h1.99v264.63h-1.99z"/><path fill="#f18b00" d="M101.06 0h1.99v264.63h-1.99z"/><path fill="#f18d00" d="M102.39 0h1.99v264.63h-1.99z"/><path fill="#f18d00" d="M103.72 0h1.99v264.63h-1.99z"/><path fill="#f18d00" d="M105.05 0h1.99v264.63h-1.99z"/><path fill="#f18d00" d="M106.37 0h1.99v264.63h-1.99z"/><path fill="#f18d00" d="M107.7 0h1.99v264.63h-1.99z"/><path fill="#f18d00" d="M109.03 0h1.99v264.63h-1.99z"/><path fill="#f28f00" d="M110.36 0h1.99v264.63h-1.99z"/><path fill="#f28f00" d="M111.69 0h1.99v264.63h-1.99z"/><path fill="#f28f00" d="M113.02 0h1.99v264.63h-1.99z"/><path fill="#f28f00" d="M114.35 0h1.99v264.63h-1.99z"/><path fill="#f29100" d="M115.68 0h1.99v264.63h-1.99z"/><path fill="#f29100" d="M117.01 0H119v264.63h-1.99z"/><path fill="#f29100" d="M118.34 0h1.99v264.63h-1.99z"/><path fill="#f29100" d="M119.67 0h1.99v264.63h-1.99z"/><path fill="#f29100" d="M121 0h1.99v264.63H121z"/><path fill="#f29100" d="M122.33 0h1.99v264.63h-1.99z"/><path fill="#f29300" d="M123.66 0h1.99v264.63h-1.99z"/><path fill="#f29300" d="M124.99 0h1.99v264.63h-1.99z"/><path fill="#f29300" d="M126.32 0h1.99v264.63h-1.99z"/><path fill="#f29300" d="M127.65 0h1.99v264.63h-1.99z"/><path fill="#f39500" d="M128.98 0h1.99v264.63h-1.99z"/><path fill="#f39500" d="M130.31 0h1.99v264.63h-1.99z"/><path fill="#f39500" d="M131.64 0h1.99v264.63h-1.99z"/><path fill="#f39500" d="M132.97 0h1.99v264.63h-1.99z"/><path fill="#f39500" d="M134.3 0h1.99v264.63h-1.99z"/><path fill="#f39800" d="M135.63 0h1.99v264.63h-1.99z"/><path fill="#f39800" d="M136.96 0h1.99v264.63h-1.99z"/><path fill="#f39800" d="M138.29 0h1.99v264.63h-1.99z"/><path fill="#f39800" d="M139.62 0h1.99v264.63h-1.99z"/><path fill="#f39a00" d="M140.95 0h1.99v264.63h-1.99z"/><path fill="#f39a00" d="M142.28 0h1.99v264.63h-1.99z"/><path fill="#f39a00" d="M143.61 0h1.99v264.63h-1.99z"/><path fill="#f39a00" d="M144.94 0h1.99v264.63h-1.99z"/><path fill="#f39a00" d="M146.27 0h1.99v264.63h-1.99z"/><path fill="#f39a00" d="M147.6 0h1.99v264.63h-1.99z"/><path fill="#f49c00" d="M148.92 0h1.99v264.63h-1.99z"/><path fill="#f49c00" d="M150.25 0h1.99v264.63h-1.99z"/><path fill="#f49c00" d="M151.58 0h1.99v264.63h-1.99z"/><path fill="#f49c00" d="M152.91 0h1.99v264.63h-1.99z"/><path fill="#f49e00" d="M154.24 0h1.99v264.63h-1.99z"/><path fill="#f49e00" d="M155.57 0h1.99v264.63h-1.99z"/><path fill="#f49e00" d="M156.9 0h1.99v264.63h-1.99z"/><path fill="#f49e00" d="M158.23 0h1.99v264.63h-1.99z"/><path fill="#f49e00" d="M159.56 0h1.99v264.63h-1.99z"/><path fill="#f49e00" d="M160.89 0h1.99v264.63h-1.99z"/><path fill="#f5a000" d="M162.22 0h1.99v264.63h-1.99z"/><path fill="#f5a000" d="M163.55 0h1.99v264.63h-1.99z"/><path fill="#f5a000" d="M164.88 0h1.99v264.63h-1.99z"/><path fill="#f5a000" d="M166.21 0h1.99v264.63h-1.99z"/><path fill="#f5a200" d="M167.54 0h1.99v264.63h-1.99z"/><path fill="#f5a200" d="M168.87 0h1.99v264.63h-1.99z"/><path fill="#f5a200" d="M170.2 0h1.99v264.63h-1.99z"/><path fill="#f5a200" d="M171.53 0h1.99v264.63h-1.99z"/><path fill="#f5a200" d="M172.86 0h1.99v264.63h-1.99z"/><path fill="#f5a200" d="M174.19 0h1.99v264.63h-1.99z"/><path fill="#f5a400" d="M175.52 0h1.99v264.63h-1.99z"/><path fill="#f5a400" d="M176.85 0h1.99v264.63h-1.99z"/><path fill="#f5a400" d="M178.18 0h1.99v264.63h-1.99z"/><path fill="#f5a400" d="M179.51 0h1.99v264.63h-1.99z"/><path fill="#f5a400" d="M180.84 0h1.99v264.63h-1.99z"/><path fill="#f5a400" d="M182.17 0h1.99v264.63h-1.99z"/><path fill="#f5a500" d="M183.5 0h1.99v264.63h-1.99z"/><path fill="#f5a500" d="M184.83 0h1.99v264.63h-1.99z"/><path fill="#f5a500" d="M186.16 0h1.99v264.63h-1.99z"/><path fill="#f5a500" d="M187.49 0h1.99v264.63h-1.99z"/><path fill="#f6a700" d="M188.82 0h1.99v264.63h-1.99z"/><path fill="#f6a700" d="M190.15 0h1.99v264.63h-1.99z"/><path fill="#f6a700" d="M191.47 0h1.99v264.63h-1.99z"/><path fill="#f6a700" d="M192.8 0h1.99v264.63h-1.99z"/><path fill="#f6a700" d="M194.13 0h1.99v264.63h-1.99z"/><path fill="#f6a700" d="M195.46 0h1.99v264.63h-1.99z"/><path fill="#f6a900" d="M196.79 0h1.99v264.63h-1.99z"/><path fill="#f6a900" d="M198.12 0h1.99v264.63h-1.99z"/><path fill="#f6a900" d="M199.45 0h1.99v264.63h-1.99z"/><path fill="#f6a900" d="M200.78 0h1.99v264.63h-1.99z"/><path fill="#f6ab00" d="M202.11 0h1.99v264.63h-1.99z"/><path fill="#f6ab00" d="M203.44 0h1.99v264.63h-1.99z"/><path fill="#f6ab00" d="M204.77 0h1.99v264.63h-1.99z"/><path fill="#f6ab00" d="M206.1 0h1.99v264.63h-1.99z"/><path fill="#f6ab00" d="M207.43 0h1.99v264.63h-1.99z"/><path fill="#f7ad00" d="M208.76 0h1.99v264.63h-1.99z"/><path fill="#f7ad00" d="M210.09 0h1.99v264.63h-1.99z"/><path fill="#f7ad00" d="M211.42 0h1.99v264.63h-1.99z"/><path fill="#f7ad00" d="M212.75 0h1.99v264.63h-1.99z"/><path fill="#f7af00" d="M214.08 0h1.99v264.63h-1.99z"/><path fill="#f7af00" d="M215.41 0h1.99v264.63h-1.99z"/><path fill="#f7af00" d="M216.74 0h1.99v264.63h-1.99z"/><path fill="#f7af00" d="M218.07 0h1.99v264.63h-1.99z"/><path fill="#f7af00" d="M219.4 0h1.99v264.63h-1.99z"/><path fill="#f7af00" d="M220.73 0h1.99v264.63h-1.99z"/><path fill="#f8b100" d="M222.06 0h1.99v264.63h-1.99z"/><path fill="#f8b100" d="M223.39 0h1.99v264.63h-1.99z"/><path fill="#f8b100" d="M224.72 0h1.99v264.63h-1.99z"/><path fill="#f8b100" d="M226.05 0h1.99v264.63h-1.99z"/><path fill="#f8b300" d="M227.38 0h1.99v264.63h-1.99z"/><path fill="#f8b300" d="M228.71 0h1.99v264.63h-1.99z"/><path fill="#f8b300" d="M230.04 0h1.99v264.63h-1.99z"/><path fill="#f8b300" d="M231.37 0h1.99v264.63h-1.99z"/><path fill="#f8b300" d="M232.69 0h1.99v264.63h-1.99z"/><path fill="#f8b300" d="M234.02 0h1.99v264.63h-1.99z"/><path fill="#f8b500" d="M235.35 0h1.99v264.63h-1.99z"/><path fill="#f8b500" d="M236.68 0h1.99v264.63h-1.99z"/><path fill="#f8b500" d="M238.01 0H240v264.63h-1.99z"/><path fill="#f8b500" d="M239.34 0h1.99v264.63h-1.99z"/><path fill="#f8b500" d="M240.67 0h1.99v264.63h-1.99z"/><path fill="#f8b500" d="M242 0h1.99v264.63H242z"/><path fill="#f9b700" d="M243.33 0h1.99v264.63h-1.99z"/><path fill="#f9b700" d="M244.66 0h1.99v264.63h-1.99z"/><path fill="#f9b700" d="M245.99 0h1.99v264.63h-1.99z"/><path fill="#f9b700" d="M247.32 0h1.99v264.63h-1.99z"/><path fill="#f9b900" d="M248.65 0h1.99v264.63h-1.99z"/><path fill="#f9b900" d="M249.98 0h1.99v264.63h-1.99z"/><path fill="#f9b900" d="M251.31 0h1.99v264.63h-1.99z"/><path fill="#f9b900" d="M252.64 0h1.99v264.63h-1.99z"/><path fill="#f9b900" d="M253.97 0h1.99v264.63h-1.99z"/><path fill="#f9b900" d="M255.3 0h1.99v264.63h-1.99z"/><path fill="#f9bb00" d="M256.63 0h1.99v264.63h-1.99z"/><path fill="#f9bb00" d="M257.96 0h1.99v264.63h-1.99z"/><path fill="#f9bb00" d="M259.29 0h1.99v264.63h-1.99z"/><path fill="#f9bb00" d="M260.62 0h1.99v264.63h-1.99z"/><path fill="#fabd00" d="M261.95 0h1.99v264.63h-1.99z"/><path fill="#fabd00" d="M263.28 0h1.99v264.63h-1.99z"/><path fill="#fabd00" d="M264.61 0h1.99v264.63h-1.99z"/><path fill="#fabd00" d="M265.94 0h1.99v264.63h-1.99z"/><path fill="#fabd00" d="M267.27 0h1.99v264.63h-1.99z"/><path fill="#fabd00" d="M268.6 0h1.99v264.63h-1.99z"/><path fill="#fabe00" d="M269.93 0h1.99v264.63h-1.99z"/><path fill="#fabe00" d="M271.26 0h1.99v264.63h-1.99z"/><path fill="#fabe00" d="M272.59 0h1.99v264.63h-1.99z"/><path fill="#fac000" d="M273.92 0h1.99v264.63h-1.99z"/><path fill="#fac000" d="M275.24 0h1.99v264.63h-1.99z"/><path fill="#fac000" d="M276.57 0h1.99v264.63h-1.99z"/><path fill="#fac000" d="M277.9 0h1.99v264.63h-1.99z"/><path fill="#fac000" d="M279.23 0h1.99v264.63h-1.99z"/><path fill="#fac000" d="M280.56 0h1.99v264.63h-1.99z"/><path fill="#fbc200" d="M281.89 0h1.99v264.63h-1.99z"/><path fill="#fbc200" d="M283.22 0h1.99v264.63h-1.99z"/><path fill="#fbc200" d="M284.55 0h1.99v264.63h-1.99z"/><path fill="#fbc200" d="M285.88 0h1.99v264.63h-1.99z"/><path fill="#fbc400" d="M287.21 0h1.99v264.63h-1.99z"/><path fill="#fbc400" d="M288.54 0h1.99v264.63h-1.99z"/><path fill="#fbc400" d="M289.87 0h1.99v264.63h-1.99z"/><path fill="#fbc400" d="M291.2 0h1.99v264.63h-1.99z"/><path fill="#fbc400" d="M292.53 0h1.99v264.63h-1.99z"/><path fill="#fbc400" d="M293.86 0h1.99v264.63h-1.99z"/><path fill="#fbc600" d="M295.19 0h1.99v264.63h-1.99z"/><path fill="#fbc600" d="M296.52 0h1.99v264.63h-1.99z"/><path fill="#fbc600" d="M297.85 0h1.99v264.63h-1.99z"/><path fill="#fbc600" d="M299.18 0h1.99v264.63h-1.99z"/><path fill="#fcc800" d="M300.51 0h1.99v264.63h-1.99z"/><path fill="#fcc800" d="M301.84 0h1.99v264.63h-1.99z"/><path fill="#fcc800" d="M303.17 0h1.99v264.63h-1.99z"/><path fill="#fcc800" d="M304.5 0h1.99v264.63h-1.99z"/><path fill="#fcc800" d="M305.83 0h1.99v264.63h-1.99z"/><path fill="#fcc800" d="M307.16 0h1.99v264.63h-1.99z"/><path fill="#fcc900" d="M308.49 0h1.99v264.63h-1.99z"/><path fill="#fcc900" d="M309.82 0h1.99v264.63h-1.99z"/><path fill="#fcc900" d="M311.15 0h1.99v264.63h-1.99z"/><path fill="#fcc900" d="M312.48 0h1.99v264.63h-1.99z"/><path fill="#fcc900" d="M313.81 0h1.99v264.63h-1.99z"/><path fill="#fcc900" d="M315.14 0h1.99v264.63h-1.99z"/><path fill="#fccb00" d="M316.47 0h1.99v264.63h-1.99z"/><path fill="#fccb00" d="M317.79 0h1.99v264.63h-1.99z"/><path fill="#fccb00" d="M319.12 0h1.99v264.63h-1.99z"/><path fill="#fccb00" d="M320.45 0h1.99v264.63h-1.99z"/><path fill="#fdcd00" d="M321.78 0h1.99v264.63h-1.99z"/><path fill="#fdcd00" d="M323.11 0h1.99v264.63h-1.99z"/><path fill="#fdcd00" d="M324.44 0h1.99v264.63h-1.99z"/><path fill="#fdcd00" d="M325.77 0h1.99v264.63h-1.99z"/><path fill="#fdcd00" d="M327.1 0h1.99v264.63h-1.99z"/><path fill="#fdcd00" d="M328.43 0h1.99v264.63h-1.99z"/><path fill="#fdcf00" d="M329.76 0h1.99v264.63h-1.99z"/><path fill="#fdcf00" d="M331.09 0h1.99v264.63h-1.99z"/><path fill="#fdcf00" d="M332.42 0h1.99v264.63h-1.99z"/><path fill="#fdcf00" d="M333.75 0h1.99v264.63h-1.99z"/><path fill="#fdd000" d="M335.08 0h1.99v264.63h-1.99z"/><path fill="#fdd000" d="M336.41 0h1.99v264.63h-1.99z"/><path fill="#fdd000" d="M337.74 0h2.66v264.63h-2.66z"/></g><path d="M180.23 264.63h-47.36l17.8-27.63L203 155.62l23.68 36.82L198 237l-17.8 27.67zm-64.66 0l17.8-27.63 61-94.79-24.17-37.57L85.1 237l-17.8 27.63z" fill="#641d87" fill-rule="evenodd"/></g></g></svg>
|
|
Binary file
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
|
3
|
+
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
|
4
|
+
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="680.000000pt" height="680.000000pt" viewBox="0 0 680.000000 680.000000"
|
|
6
|
+
preserveAspectRatio="xMidYMid meet">
|
|
7
|
+
<metadata>
|
|
8
|
+
Created by potrace 1.14, written by Peter Selinger 2001-2017
|
|
9
|
+
</metadata>
|
|
10
|
+
<g transform="translate(0.000000,680.000000) scale(0.100000,-0.100000)"
|
|
11
|
+
fill="#000000" stroke="none">
|
|
12
|
+
<path d="M3376 6005 c-9 -13 -16 -29 -16 -34 0 -5 -3 -11 -7 -13 -8 -3 -76
|
|
13
|
+
-102 -99 -143 -6 -11 -48 -76 -92 -145 -45 -69 -100 -154 -122 -190 -22 -36
|
|
14
|
+
-77 -120 -120 -188 -44 -68 -80 -127 -80 -132 0 -4 -3 -10 -8 -12 -4 -1 -33
|
|
15
|
+
-43 -65 -93 -31 -49 -62 -97 -67 -105 -6 -8 -32 -49 -59 -90 -26 -41 -78 -121
|
|
16
|
+
-115 -177 -36 -57 -66 -105 -66 -108 0 -3 -5 -11 -11 -18 -13 -15 -88 -131
|
|
17
|
+
-209 -322 -132 -210 -296 -461 -302 -463 -4 -2 -8 -8 -8 -14 0 -5 -25 -46 -55
|
|
18
|
+
-90 -30 -44 -55 -81 -55 -83 0 -4 -176 -280 -200 -315 -6 -8 -31 -46 -55 -85
|
|
19
|
+
-25 -38 -49 -77 -55 -85 -5 -8 -34 -53 -64 -100 -30 -47 -83 -129 -118 -183
|
|
20
|
+
-35 -54 -67 -106 -73 -115 -5 -10 -31 -49 -56 -87 -133 -202 -179 -276 -179
|
|
21
|
+
-285 0 -5 -4 -10 -10 -10 -5 0 -10 -7 -10 -15 0 -8 -4 -15 -10 -15 -5 0 -10
|
|
22
|
+
-7 -10 -15 0 -8 -3 -15 -8 -15 -4 0 -12 -9 -17 -20 -12 -24 -137 -223 -145
|
|
23
|
+
-230 -3 -3 -9 -13 -15 -22 -5 -10 -118 -185 -250 -390 -132 -205 -274 -427
|
|
24
|
+
-317 -493 -42 -66 -81 -125 -87 -132 -6 -7 -11 -15 -11 -18 0 -5 -102 -165
|
|
25
|
+
-123 -192 -8 -10 91 -13 485 -13 l494 0 29 50 c17 27 33 50 38 50 4 0 7 4 7 9
|
|
26
|
+
0 5 17 36 38 68 21 32 61 94 90 138 28 44 56 85 62 92 5 7 10 15 10 19 0 4 11
|
|
27
|
+
22 25 40 14 18 25 35 25 38 0 4 19 34 42 69 41 62 69 105 147 227 55 86 54 85
|
|
28
|
+
106 163 25 37 45 70 45 73 0 3 11 20 25 38 14 18 25 36 25 40 0 4 5 12 10 19
|
|
29
|
+
15 17 120 178 120 184 0 2 11 19 25 37 14 18 25 36 25 40 0 4 5 12 10 19 18
|
|
30
|
+
21 80 116 80 122 0 3 5 11 11 18 5 7 27 39 48 72 68 107 173 269 202 313 16
|
|
31
|
+
24 29 45 29 47 0 3 16 27 35 54 19 26 35 53 35 60 0 6 4 11 9 11 5 0 14 14 21
|
|
32
|
+
30 7 17 16 30 21 30 5 0 9 5 9 10 0 9 105 175 120 190 3 3 12 17 20 33 8 15
|
|
33
|
+
51 82 95 150 82 126 173 267 256 397 26 41 52 80 56 85 5 6 12 17 16 25 12 24
|
|
34
|
+
30 51 65 102 17 26 32 51 32 57 0 6 4 11 9 11 5 0 14 14 21 30 7 17 16 30 21
|
|
35
|
+
30 5 0 9 5 9 10 0 12 112 183 123 188 4 2 7 9 7 15 0 10 47 85 61 97 3 3 9 12
|
|
36
|
+
12 20 4 8 15 27 25 41 9 15 26 41 37 58 11 17 23 30 27 29 8 -3 103 -148 144
|
|
37
|
+
-220 15 -27 31 -48 36 -48 4 0 8 -4 8 -9 0 -12 142 -235 153 -239 4 -2 7 -8 7
|
|
38
|
+
-12 0 -7 80 -135 150 -240 5 -8 37 -58 71 -110 33 -52 74 -114 90 -138 16 -23
|
|
39
|
+
29 -47 29 -52 0 -6 5 -10 10 -10 6 0 10 -4 10 -10 0 -5 36 -64 80 -131 44 -67
|
|
40
|
+
80 -123 80 -125 0 -4 178 -277 190 -291 5 -7 10 -14 10 -17 0 -2 27 -45 60
|
|
41
|
+
-95 33 -50 60 -95 60 -100 0 -5 7 -15 16 -22 9 -7 20 -22 25 -34 10 -23 31
|
|
42
|
+
-58 40 -65 3 -3 23 -34 45 -70 21 -36 43 -70 49 -76 20 -23 120 -188 118 -194
|
|
43
|
+
-4 -15 -308 -485 -315 -488 -5 -2 -8 -7 -8 -12 0 -5 -22 -43 -50 -84 -27 -42
|
|
44
|
+
-50 -78 -50 -81 0 -3 -5 -11 -11 -18 -6 -7 -44 -64 -84 -127 -40 -63 -102
|
|
45
|
+
-160 -138 -215 -35 -55 -94 -145 -129 -200 -35 -55 -81 -126 -101 -157 l-37
|
|
46
|
+
-58 1421 0 c1136 0 1420 3 1412 13 -10 13 -47 71 -131 202 -28 44 -56 85 -62
|
|
47
|
+
92 -5 7 -10 14 -10 17 0 6 -154 246 -170 263 -5 7 -10 14 -10 17 0 2 -27 45
|
|
48
|
+
-60 95 -33 50 -60 94 -60 99 0 5 -8 17 -19 28 -10 11 -24 31 -31 43 -6 13 -50
|
|
49
|
+
82 -97 155 -89 137 -160 246 -254 393 -75 117 -341 531 -394 613 -23 36 -66
|
|
50
|
+
103 -96 150 -30 47 -86 133 -124 192 -39 59 -74 115 -80 125 -5 10 -28 45 -49
|
|
51
|
+
78 -50 77 -133 205 -178 275 -19 30 -70 109 -114 175 -43 66 -79 122 -79 125
|
|
52
|
+
0 3 -25 43 -56 90 -153 234 -189 291 -189 300 0 5 -3 10 -7 10 -5 0 -24 27
|
|
53
|
+
-43 60 -19 33 -38 60 -42 60 -5 0 -8 5 -8 10 0 6 -30 56 -66 113 -37 56 -86
|
|
54
|
+
131 -109 167 -23 36 -65 101 -93 145 -28 44 -121 188 -206 320 -85 132 -199
|
|
55
|
+
309 -253 392 -54 84 -102 161 -108 170 -5 10 -35 56 -65 103 -31 47 -71 109
|
|
56
|
+
-90 138 -18 28 -37 52 -41 52 -3 0 -14 -11 -23 -25z"/>
|
|
57
|
+
<path d="M3300 3792 c-52 -81 -132 -204 -177 -274 -46 -70 -83 -130 -83 -133
|
|
58
|
+
0 -3 -5 -11 -11 -18 -5 -7 -33 -48 -61 -92 -29 -44 -78 -120 -110 -169 -32
|
|
59
|
+
-48 -58 -90 -58 -92 0 -2 -16 -27 -35 -54 -19 -27 -35 -52 -35 -56 0 -3 -11
|
|
60
|
+
-20 -25 -38 -14 -18 -25 -38 -25 -44 0 -6 -4 -12 -8 -14 -7 -2 -53 -72 -122
|
|
61
|
+
-182 -8 -14 -43 -69 -78 -123 -35 -54 -69 -107 -75 -118 -7 -10 -17 -25 -24
|
|
62
|
+
-32 -6 -7 -15 -22 -18 -33 -3 -11 -11 -20 -16 -20 -5 0 -9 -5 -9 -10 0 -9 -39
|
|
63
|
+
-74 -63 -105 -4 -5 -39 -59 -77 -120 -39 -60 -75 -117 -80 -125 -5 -8 -25 -39
|
|
64
|
+
-45 -67 -19 -29 -35 -55 -35 -58 0 -4 -11 -21 -25 -39 -14 -18 -25 -36 -25
|
|
65
|
+
-40 0 -4 -5 -12 -10 -19 -6 -7 -33 -46 -59 -87 -27 -41 -73 -113 -103 -160
|
|
66
|
+
-272 -420 -368 -572 -368 -580 0 -4 -3 -10 -7 -12 -9 -3 -83 -114 -83 -123 0
|
|
67
|
+
-3 216 -5 479 -5 l480 0 20 29 c12 16 21 32 21 36 0 3 11 21 25 39 14 18 25
|
|
68
|
+
38 25 44 0 6 4 12 9 14 4 2 49 68 99 148 51 80 95 150 99 155 20 25 103 155
|
|
69
|
+
103 160 0 3 5 11 10 18 13 15 19 25 246 377 104 162 191 299 193 305 2 5 7 12
|
|
70
|
+
10 15 7 6 59 85 76 115 6 11 53 85 106 165 52 80 113 174 134 210 22 36 44 70
|
|
71
|
+
50 76 5 6 19 27 30 47 11 20 23 37 27 37 5 0 8 6 8 13 0 8 11 27 25 43 14 16
|
|
72
|
+
25 32 25 36 0 6 115 186 137 214 4 5 14 21 22 35 8 13 28 45 44 71 l30 47 -58
|
|
73
|
+
88 c-31 48 -74 114 -94 146 -20 32 -69 108 -108 169 -40 61 -73 112 -73 115 0
|
|
74
|
+
2 -11 19 -25 37 -14 18 -25 38 -25 44 0 6 -4 12 -8 14 -5 2 -25 31 -47 66 -21
|
|
75
|
+
34 -41 62 -44 62 -3 0 -49 -66 -101 -148z"/>
|
|
76
|
+
<path d="M4035 2897 c-10 -17 -23 -36 -27 -42 -14 -18 -78 -117 -78 -121 0 -2
|
|
77
|
+
-16 -27 -35 -54 -19 -27 -35 -52 -35 -54 0 -2 -28 -47 -62 -99 -61 -93 -164
|
|
78
|
+
-252 -277 -430 -31 -48 -84 -131 -118 -183 -35 -52 -63 -99 -63 -104 0 -6 -4
|
|
79
|
+
-10 -10 -10 -5 0 -10 -7 -10 -15 0 -8 -4 -15 -10 -15 -5 0 -10 -7 -10 -15 0
|
|
80
|
+
-8 -4 -15 -9 -15 -5 0 -14 -12 -20 -27 -10 -25 -186 -302 -209 -328 -4 -6 -21
|
|
81
|
+
-33 -37 -60 -16 -28 -33 -54 -38 -60 -10 -13 -64 -95 -207 -320 -63 -99 -119
|
|
82
|
+
-183 -125 -187 -5 -4 207 -8 473 -8 265 0 482 3 482 8 0 4 115 185 255 402
|
|
83
|
+
140 217 268 418 285 445 17 28 36 59 43 70 7 11 14 22 17 25 10 10 100 150
|
|
84
|
+
100 155 0 9 44 69 53 73 4 2 7 8 7 12 0 5 30 55 67 112 95 144 92 139 74 170
|
|
85
|
+
-27 45 -220 342 -229 353 -4 6 -23 36 -42 68 -19 31 -38 57 -42 57 -5 0 -8 4
|
|
86
|
+
-8 10 0 5 -31 57 -68 115 l-68 105 -19 -33z"/>
|
|
87
|
+
</g>
|
|
88
|
+
</svg>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "",
|
|
3
|
+
"short_name": "",
|
|
4
|
+
"icons": [
|
|
5
|
+
{
|
|
6
|
+
"src": "/android-chrome-192x192.png",
|
|
7
|
+
"sizes": "192x192",
|
|
8
|
+
"type": "image/png"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"src": "/android-chrome-512x512.png",
|
|
12
|
+
"sizes": "512x512",
|
|
13
|
+
"type": "image/png"
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
"theme_color": "#ffffff",
|
|
17
|
+
"background_color": "#ffffff",
|
|
18
|
+
"display": "standalone"
|
|
19
|
+
}
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 340.4 264.63"><defs><clipPath id="aa12d1a56-b4a7-412f-992f-571eb6828cf6"><path fill="none" clip-rule="evenodd" d="M170.2 0l85.1 132.31 85.1 132.32H198.24l46.43-72.19L170.2 76.65 49.3 264.63H0l85.1-132.32L170.2 0z"/></clipPath></defs><g><g><g clip-path="url(#aa12d1a56-b4a7-412f-992f-571eb6828cf6)"><path fill="#ed6a00" d="M0 0h.66v264.63H0z"/><path fill="#ed6a00" d="M0 0h1.99v264.63H0z"/><path fill="#ed6a00" d="M1.33 0h1.99v264.63H1.33z"/><path fill="#ed6c00" d="M2.66 0h1.99v264.63H2.66z"/><path fill="#ed6c00" d="M3.99 0h1.99v264.63H3.99z"/><path fill="#ed6c00" d="M5.32 0h1.99v264.63H5.32z"/><path fill="#ed6c00" d="M6.65 0h1.99v264.63H6.65z"/><path fill="#ed6f00" d="M7.98 0h1.99v264.63H7.98z"/><path fill="#ed6f00" d="M9.31 0h1.99v264.63H9.31z"/><path fill="#ed6f00" d="M10.64 0h1.99v264.63h-1.99z"/><path fill="#ed6f00" d="M11.97 0h1.99v264.63h-1.99z"/><path fill="#ed6f00" d="M13.3 0h1.99v264.63H13.3z"/><path fill="#ed6f00" d="M14.63 0h1.99v264.63h-1.99z"/><path fill="#ed7100" d="M15.96 0h1.99v264.63h-1.99z"/><path fill="#ed7100" d="M17.29 0h1.99v264.63h-1.99z"/><path fill="#ed7100" d="M18.62 0h1.99v264.63h-1.99z"/><path fill="#ed7100" d="M19.95 0h1.99v264.63h-1.99z"/><path fill="#ee7300" d="M21.27 0h1.99v264.63h-1.99z"/><path fill="#ee7300" d="M22.6 0h1.99v264.63H22.6z"/><path fill="#ee7300" d="M23.93 0h1.99v264.63h-1.99z"/><path fill="#ee7300" d="M25.26 0h1.99v264.63h-1.99z"/><path fill="#ee7300" d="M26.59 0h1.99v264.63h-1.99z"/><path fill="#ee7300" d="M27.92 0h1.99v264.63h-1.99z"/><path fill="#ee7500" d="M29.25 0h1.99v264.63h-1.99z"/><path fill="#ee7500" d="M30.58 0h1.99v264.63h-1.99z"/><path fill="#ee7500" d="M31.91 0h1.99v264.63h-1.99z"/><path fill="#ee7500" d="M33.24 0h1.99v264.63h-1.99z"/><path fill="#ee7800" d="M34.57 0h1.99v264.63h-1.99z"/><path fill="#ee7800" d="M35.9 0h1.99v264.63H35.9z"/><path fill="#ee7800" d="M37.23 0h1.99v264.63h-1.99z"/><path fill="#ee7800" d="M38.56 0h1.99v264.63h-1.99z"/><path fill="#ee7800" d="M39.89 0h1.99v264.63h-1.99z"/><path fill="#ee7800" d="M41.22 0h1.99v264.63h-1.99z"/><path fill="#ef7a00" d="M42.55 0h1.99v264.63h-1.99z"/><path fill="#ef7a00" d="M43.88 0h1.99v264.63h-1.99z"/><path fill="#ef7a00" d="M45.21 0h1.99v264.63h-1.99z"/><path fill="#ef7a00" d="M46.54 0h1.99v264.63h-1.99z"/><path fill="#ef7a00" d="M47.87 0h1.99v264.63h-1.99z"/><path fill="#ef7a00" d="M49.2 0h1.99v264.63H49.2z"/><path fill="#ef7c00" d="M50.53 0h1.99v264.63h-1.99z"/><path fill="#ef7c00" d="M51.86 0h1.99v264.63h-1.99z"/><path fill="#ef7c00" d="M53.19 0h1.99v264.63h-1.99z"/><path fill="#ef7c00" d="M54.52 0h1.99v264.63h-1.99z"/><path fill="#ef7e00" d="M55.85 0h1.99v264.63h-1.99z"/><path fill="#ef7e00" d="M57.18 0h1.99v264.63h-1.99z"/><path fill="#ef7e00" d="M58.51 0h1.99v264.63h-1.99z"/><path fill="#ef7e00" d="M59.84 0h1.99v264.63h-1.99z"/><path fill="#ef7e00" d="M61.17 0h1.99v264.63h-1.99z"/><path fill="#ef7e00" d="M62.5 0h1.99v264.63H62.5z"/><path fill="#f08000" d="M63.82 0h1.99v264.63h-1.99z"/><path fill="#f08000" d="M65.15 0h1.99v264.63h-1.99z"/><path fill="#f08000" d="M66.48 0h1.99v264.63h-1.99z"/><path fill="#f08300" d="M67.81 0h1.99v264.63h-1.99z"/><path fill="#f08300" d="M69.14 0h1.99v264.63h-1.99z"/><path fill="#f08300" d="M70.47 0h1.99v264.63h-1.99z"/><path fill="#f08300" d="M71.8 0h1.99v264.63H71.8z"/><path fill="#f08300" d="M73.13 0h1.99v264.63h-1.99z"/><path fill="#f08300" d="M74.46 0h1.99v264.63h-1.99z"/><path fill="#f08500" d="M75.79 0h1.99v264.63h-1.99z"/><path fill="#f08500" d="M77.12 0h1.99v264.63h-1.99z"/><path fill="#f08500" d="M78.45 0h1.99v264.63h-1.99z"/><path fill="#f08500" d="M79.78 0h1.99v264.63h-1.99z"/><path fill="#f18700" d="M81.11 0h1.99v264.63h-1.99z"/><path fill="#f18700" d="M82.44 0h1.99v264.63h-1.99z"/><path fill="#f18700" d="M83.77 0h1.99v264.63h-1.99z"/><path fill="#f18700" d="M85.1 0h1.99v264.63H85.1z"/><path fill="#f18700" d="M86.43 0h1.99v264.63h-1.99z"/><path fill="#f18700" d="M87.76 0h1.99v264.63h-1.99z"/><path fill="#f18900" d="M89.09 0h1.99v264.63h-1.99z"/><path fill="#f18900" d="M90.42 0h1.99v264.63h-1.99z"/><path fill="#f18900" d="M91.75 0h1.99v264.63h-1.99z"/><path fill="#f18900" d="M93.08 0h1.99v264.63h-1.99z"/><path fill="#f18b00" d="M94.41 0h1.99v264.63h-1.99z"/><path fill="#f18b00" d="M95.74 0h1.99v264.63h-1.99z"/><path fill="#f18b00" d="M97.07 0h1.99v264.63h-1.99z"/><path fill="#f18b00" d="M98.4 0h1.99v264.63H98.4z"/><path fill="#f18b00" d="M99.73 0h1.99v264.63h-1.99z"/><path fill="#f18b00" d="M101.06 0h1.99v264.63h-1.99z"/><path fill="#f18d00" d="M102.39 0h1.99v264.63h-1.99z"/><path fill="#f18d00" d="M103.72 0h1.99v264.63h-1.99z"/><path fill="#f18d00" d="M105.05 0h1.99v264.63h-1.99z"/><path fill="#f18d00" d="M106.37 0h1.99v264.63h-1.99z"/><path fill="#f18d00" d="M107.7 0h1.99v264.63h-1.99z"/><path fill="#f18d00" d="M109.03 0h1.99v264.63h-1.99z"/><path fill="#f28f00" d="M110.36 0h1.99v264.63h-1.99z"/><path fill="#f28f00" d="M111.69 0h1.99v264.63h-1.99z"/><path fill="#f28f00" d="M113.02 0h1.99v264.63h-1.99z"/><path fill="#f28f00" d="M114.35 0h1.99v264.63h-1.99z"/><path fill="#f29100" d="M115.68 0h1.99v264.63h-1.99z"/><path fill="#f29100" d="M117.01 0H119v264.63h-1.99z"/><path fill="#f29100" d="M118.34 0h1.99v264.63h-1.99z"/><path fill="#f29100" d="M119.67 0h1.99v264.63h-1.99z"/><path fill="#f29100" d="M121 0h1.99v264.63H121z"/><path fill="#f29100" d="M122.33 0h1.99v264.63h-1.99z"/><path fill="#f29300" d="M123.66 0h1.99v264.63h-1.99z"/><path fill="#f29300" d="M124.99 0h1.99v264.63h-1.99z"/><path fill="#f29300" d="M126.32 0h1.99v264.63h-1.99z"/><path fill="#f29300" d="M127.65 0h1.99v264.63h-1.99z"/><path fill="#f39500" d="M128.98 0h1.99v264.63h-1.99z"/><path fill="#f39500" d="M130.31 0h1.99v264.63h-1.99z"/><path fill="#f39500" d="M131.64 0h1.99v264.63h-1.99z"/><path fill="#f39500" d="M132.97 0h1.99v264.63h-1.99z"/><path fill="#f39500" d="M134.3 0h1.99v264.63h-1.99z"/><path fill="#f39800" d="M135.63 0h1.99v264.63h-1.99z"/><path fill="#f39800" d="M136.96 0h1.99v264.63h-1.99z"/><path fill="#f39800" d="M138.29 0h1.99v264.63h-1.99z"/><path fill="#f39800" d="M139.62 0h1.99v264.63h-1.99z"/><path fill="#f39a00" d="M140.95 0h1.99v264.63h-1.99z"/><path fill="#f39a00" d="M142.28 0h1.99v264.63h-1.99z"/><path fill="#f39a00" d="M143.61 0h1.99v264.63h-1.99z"/><path fill="#f39a00" d="M144.94 0h1.99v264.63h-1.99z"/><path fill="#f39a00" d="M146.27 0h1.99v264.63h-1.99z"/><path fill="#f39a00" d="M147.6 0h1.99v264.63h-1.99z"/><path fill="#f49c00" d="M148.92 0h1.99v264.63h-1.99z"/><path fill="#f49c00" d="M150.25 0h1.99v264.63h-1.99z"/><path fill="#f49c00" d="M151.58 0h1.99v264.63h-1.99z"/><path fill="#f49c00" d="M152.91 0h1.99v264.63h-1.99z"/><path fill="#f49e00" d="M154.24 0h1.99v264.63h-1.99z"/><path fill="#f49e00" d="M155.57 0h1.99v264.63h-1.99z"/><path fill="#f49e00" d="M156.9 0h1.99v264.63h-1.99z"/><path fill="#f49e00" d="M158.23 0h1.99v264.63h-1.99z"/><path fill="#f49e00" d="M159.56 0h1.99v264.63h-1.99z"/><path fill="#f49e00" d="M160.89 0h1.99v264.63h-1.99z"/><path fill="#f5a000" d="M162.22 0h1.99v264.63h-1.99z"/><path fill="#f5a000" d="M163.55 0h1.99v264.63h-1.99z"/><path fill="#f5a000" d="M164.88 0h1.99v264.63h-1.99z"/><path fill="#f5a000" d="M166.21 0h1.99v264.63h-1.99z"/><path fill="#f5a200" d="M167.54 0h1.99v264.63h-1.99z"/><path fill="#f5a200" d="M168.87 0h1.99v264.63h-1.99z"/><path fill="#f5a200" d="M170.2 0h1.99v264.63h-1.99z"/><path fill="#f5a200" d="M171.53 0h1.99v264.63h-1.99z"/><path fill="#f5a200" d="M172.86 0h1.99v264.63h-1.99z"/><path fill="#f5a200" d="M174.19 0h1.99v264.63h-1.99z"/><path fill="#f5a400" d="M175.52 0h1.99v264.63h-1.99z"/><path fill="#f5a400" d="M176.85 0h1.99v264.63h-1.99z"/><path fill="#f5a400" d="M178.18 0h1.99v264.63h-1.99z"/><path fill="#f5a400" d="M179.51 0h1.99v264.63h-1.99z"/><path fill="#f5a400" d="M180.84 0h1.99v264.63h-1.99z"/><path fill="#f5a400" d="M182.17 0h1.99v264.63h-1.99z"/><path fill="#f5a500" d="M183.5 0h1.99v264.63h-1.99z"/><path fill="#f5a500" d="M184.83 0h1.99v264.63h-1.99z"/><path fill="#f5a500" d="M186.16 0h1.99v264.63h-1.99z"/><path fill="#f5a500" d="M187.49 0h1.99v264.63h-1.99z"/><path fill="#f6a700" d="M188.82 0h1.99v264.63h-1.99z"/><path fill="#f6a700" d="M190.15 0h1.99v264.63h-1.99z"/><path fill="#f6a700" d="M191.47 0h1.99v264.63h-1.99z"/><path fill="#f6a700" d="M192.8 0h1.99v264.63h-1.99z"/><path fill="#f6a700" d="M194.13 0h1.99v264.63h-1.99z"/><path fill="#f6a700" d="M195.46 0h1.99v264.63h-1.99z"/><path fill="#f6a900" d="M196.79 0h1.99v264.63h-1.99z"/><path fill="#f6a900" d="M198.12 0h1.99v264.63h-1.99z"/><path fill="#f6a900" d="M199.45 0h1.99v264.63h-1.99z"/><path fill="#f6a900" d="M200.78 0h1.99v264.63h-1.99z"/><path fill="#f6ab00" d="M202.11 0h1.99v264.63h-1.99z"/><path fill="#f6ab00" d="M203.44 0h1.99v264.63h-1.99z"/><path fill="#f6ab00" d="M204.77 0h1.99v264.63h-1.99z"/><path fill="#f6ab00" d="M206.1 0h1.99v264.63h-1.99z"/><path fill="#f6ab00" d="M207.43 0h1.99v264.63h-1.99z"/><path fill="#f7ad00" d="M208.76 0h1.99v264.63h-1.99z"/><path fill="#f7ad00" d="M210.09 0h1.99v264.63h-1.99z"/><path fill="#f7ad00" d="M211.42 0h1.99v264.63h-1.99z"/><path fill="#f7ad00" d="M212.75 0h1.99v264.63h-1.99z"/><path fill="#f7af00" d="M214.08 0h1.99v264.63h-1.99z"/><path fill="#f7af00" d="M215.41 0h1.99v264.63h-1.99z"/><path fill="#f7af00" d="M216.74 0h1.99v264.63h-1.99z"/><path fill="#f7af00" d="M218.07 0h1.99v264.63h-1.99z"/><path fill="#f7af00" d="M219.4 0h1.99v264.63h-1.99z"/><path fill="#f7af00" d="M220.73 0h1.99v264.63h-1.99z"/><path fill="#f8b100" d="M222.06 0h1.99v264.63h-1.99z"/><path fill="#f8b100" d="M223.39 0h1.99v264.63h-1.99z"/><path fill="#f8b100" d="M224.72 0h1.99v264.63h-1.99z"/><path fill="#f8b100" d="M226.05 0h1.99v264.63h-1.99z"/><path fill="#f8b300" d="M227.38 0h1.99v264.63h-1.99z"/><path fill="#f8b300" d="M228.71 0h1.99v264.63h-1.99z"/><path fill="#f8b300" d="M230.04 0h1.99v264.63h-1.99z"/><path fill="#f8b300" d="M231.37 0h1.99v264.63h-1.99z"/><path fill="#f8b300" d="M232.69 0h1.99v264.63h-1.99z"/><path fill="#f8b300" d="M234.02 0h1.99v264.63h-1.99z"/><path fill="#f8b500" d="M235.35 0h1.99v264.63h-1.99z"/><path fill="#f8b500" d="M236.68 0h1.99v264.63h-1.99z"/><path fill="#f8b500" d="M238.01 0H240v264.63h-1.99z"/><path fill="#f8b500" d="M239.34 0h1.99v264.63h-1.99z"/><path fill="#f8b500" d="M240.67 0h1.99v264.63h-1.99z"/><path fill="#f8b500" d="M242 0h1.99v264.63H242z"/><path fill="#f9b700" d="M243.33 0h1.99v264.63h-1.99z"/><path fill="#f9b700" d="M244.66 0h1.99v264.63h-1.99z"/><path fill="#f9b700" d="M245.99 0h1.99v264.63h-1.99z"/><path fill="#f9b700" d="M247.32 0h1.99v264.63h-1.99z"/><path fill="#f9b900" d="M248.65 0h1.99v264.63h-1.99z"/><path fill="#f9b900" d="M249.98 0h1.99v264.63h-1.99z"/><path fill="#f9b900" d="M251.31 0h1.99v264.63h-1.99z"/><path fill="#f9b900" d="M252.64 0h1.99v264.63h-1.99z"/><path fill="#f9b900" d="M253.97 0h1.99v264.63h-1.99z"/><path fill="#f9b900" d="M255.3 0h1.99v264.63h-1.99z"/><path fill="#f9bb00" d="M256.63 0h1.99v264.63h-1.99z"/><path fill="#f9bb00" d="M257.96 0h1.99v264.63h-1.99z"/><path fill="#f9bb00" d="M259.29 0h1.99v264.63h-1.99z"/><path fill="#f9bb00" d="M260.62 0h1.99v264.63h-1.99z"/><path fill="#fabd00" d="M261.95 0h1.99v264.63h-1.99z"/><path fill="#fabd00" d="M263.28 0h1.99v264.63h-1.99z"/><path fill="#fabd00" d="M264.61 0h1.99v264.63h-1.99z"/><path fill="#fabd00" d="M265.94 0h1.99v264.63h-1.99z"/><path fill="#fabd00" d="M267.27 0h1.99v264.63h-1.99z"/><path fill="#fabd00" d="M268.6 0h1.99v264.63h-1.99z"/><path fill="#fabe00" d="M269.93 0h1.99v264.63h-1.99z"/><path fill="#fabe00" d="M271.26 0h1.99v264.63h-1.99z"/><path fill="#fabe00" d="M272.59 0h1.99v264.63h-1.99z"/><path fill="#fac000" d="M273.92 0h1.99v264.63h-1.99z"/><path fill="#fac000" d="M275.24 0h1.99v264.63h-1.99z"/><path fill="#fac000" d="M276.57 0h1.99v264.63h-1.99z"/><path fill="#fac000" d="M277.9 0h1.99v264.63h-1.99z"/><path fill="#fac000" d="M279.23 0h1.99v264.63h-1.99z"/><path fill="#fac000" d="M280.56 0h1.99v264.63h-1.99z"/><path fill="#fbc200" d="M281.89 0h1.99v264.63h-1.99z"/><path fill="#fbc200" d="M283.22 0h1.99v264.63h-1.99z"/><path fill="#fbc200" d="M284.55 0h1.99v264.63h-1.99z"/><path fill="#fbc200" d="M285.88 0h1.99v264.63h-1.99z"/><path fill="#fbc400" d="M287.21 0h1.99v264.63h-1.99z"/><path fill="#fbc400" d="M288.54 0h1.99v264.63h-1.99z"/><path fill="#fbc400" d="M289.87 0h1.99v264.63h-1.99z"/><path fill="#fbc400" d="M291.2 0h1.99v264.63h-1.99z"/><path fill="#fbc400" d="M292.53 0h1.99v264.63h-1.99z"/><path fill="#fbc400" d="M293.86 0h1.99v264.63h-1.99z"/><path fill="#fbc600" d="M295.19 0h1.99v264.63h-1.99z"/><path fill="#fbc600" d="M296.52 0h1.99v264.63h-1.99z"/><path fill="#fbc600" d="M297.85 0h1.99v264.63h-1.99z"/><path fill="#fbc600" d="M299.18 0h1.99v264.63h-1.99z"/><path fill="#fcc800" d="M300.51 0h1.99v264.63h-1.99z"/><path fill="#fcc800" d="M301.84 0h1.99v264.63h-1.99z"/><path fill="#fcc800" d="M303.17 0h1.99v264.63h-1.99z"/><path fill="#fcc800" d="M304.5 0h1.99v264.63h-1.99z"/><path fill="#fcc800" d="M305.83 0h1.99v264.63h-1.99z"/><path fill="#fcc800" d="M307.16 0h1.99v264.63h-1.99z"/><path fill="#fcc900" d="M308.49 0h1.99v264.63h-1.99z"/><path fill="#fcc900" d="M309.82 0h1.99v264.63h-1.99z"/><path fill="#fcc900" d="M311.15 0h1.99v264.63h-1.99z"/><path fill="#fcc900" d="M312.48 0h1.99v264.63h-1.99z"/><path fill="#fcc900" d="M313.81 0h1.99v264.63h-1.99z"/><path fill="#fcc900" d="M315.14 0h1.99v264.63h-1.99z"/><path fill="#fccb00" d="M316.47 0h1.99v264.63h-1.99z"/><path fill="#fccb00" d="M317.79 0h1.99v264.63h-1.99z"/><path fill="#fccb00" d="M319.12 0h1.99v264.63h-1.99z"/><path fill="#fccb00" d="M320.45 0h1.99v264.63h-1.99z"/><path fill="#fdcd00" d="M321.78 0h1.99v264.63h-1.99z"/><path fill="#fdcd00" d="M323.11 0h1.99v264.63h-1.99z"/><path fill="#fdcd00" d="M324.44 0h1.99v264.63h-1.99z"/><path fill="#fdcd00" d="M325.77 0h1.99v264.63h-1.99z"/><path fill="#fdcd00" d="M327.1 0h1.99v264.63h-1.99z"/><path fill="#fdcd00" d="M328.43 0h1.99v264.63h-1.99z"/><path fill="#fdcf00" d="M329.76 0h1.99v264.63h-1.99z"/><path fill="#fdcf00" d="M331.09 0h1.99v264.63h-1.99z"/><path fill="#fdcf00" d="M332.42 0h1.99v264.63h-1.99z"/><path fill="#fdcf00" d="M333.75 0h1.99v264.63h-1.99z"/><path fill="#fdd000" d="M335.08 0h1.99v264.63h-1.99z"/><path fill="#fdd000" d="M336.41 0h1.99v264.63h-1.99z"/><path fill="#fdd000" d="M337.74 0h2.66v264.63h-2.66z"/></g><path d="M180.23 264.63h-47.36l17.8-27.63L203 155.62l23.68 36.82L198 237l-17.8 27.67zm-64.66 0l17.8-27.63 61-94.79-24.17-37.57L85.1 237l-17.8 27.63z" fill="#641d87" fill-rule="evenodd"/></g></g></svg>
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: inkstream
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mohd Irfan
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-02-
|
|
11
|
+
date: 2024-02-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -69,6 +69,7 @@ files:
|
|
|
69
69
|
- _includes/icon.html
|
|
70
70
|
- _includes/nav-default.html
|
|
71
71
|
- _includes/nav-header.html
|
|
72
|
+
- _includes/post-comments.html
|
|
72
73
|
- _includes/post-list.html
|
|
73
74
|
- _includes/post-meta.html
|
|
74
75
|
- _includes/post-pagination.html
|
|
@@ -86,20 +87,18 @@ files:
|
|
|
86
87
|
- _layouts/page.html
|
|
87
88
|
- _layouts/post.html
|
|
88
89
|
- assets/css/styles.css
|
|
89
|
-
- assets/
|
|
90
|
-
- assets/
|
|
91
|
-
- assets/
|
|
92
|
-
- assets/
|
|
93
|
-
- assets/
|
|
94
|
-
- assets/
|
|
95
|
-
- assets/
|
|
96
|
-
- assets/
|
|
97
|
-
- assets/
|
|
98
|
-
- assets/
|
|
99
|
-
- assets/
|
|
100
|
-
- assets/images/
|
|
101
|
-
- assets/images/blog/blog-post-thumb-8.jpg
|
|
102
|
-
- assets/images/blog/blog-post-thumb-9.jpg
|
|
90
|
+
- assets/favicon/android-chrome-192x192.png
|
|
91
|
+
- assets/favicon/android-chrome-512x512.png
|
|
92
|
+
- assets/favicon/apple-touch-icon.png
|
|
93
|
+
- assets/favicon/browserconfig.xml
|
|
94
|
+
- assets/favicon/favicon-16x16.png
|
|
95
|
+
- assets/favicon/favicon-32x32.png
|
|
96
|
+
- assets/favicon/favicon.ico
|
|
97
|
+
- assets/favicon/favicon.svg
|
|
98
|
+
- assets/favicon/mstile-150x150.png
|
|
99
|
+
- assets/favicon/safari-pinned-tab.svg
|
|
100
|
+
- assets/favicon/site.webmanifest
|
|
101
|
+
- assets/images/home-bg.jpg
|
|
103
102
|
- assets/images/posts/default-post-img.jpg
|
|
104
103
|
- assets/images/posts/text-syntax.jpg
|
|
105
104
|
- assets/images/posts/welcome.jpg
|
|
@@ -107,9 +106,12 @@ files:
|
|
|
107
106
|
- assets/images/promo-banner.jpg
|
|
108
107
|
- assets/js/blog.js
|
|
109
108
|
- assets/js/demo/style-switcher.js
|
|
109
|
+
- assets/logo/logo.jpg
|
|
110
|
+
- assets/logo/logo.svg
|
|
110
111
|
- assets/plugins/bootstrap/js/bootstrap.min.js
|
|
111
112
|
- assets/plugins/jquery-3.3.1.min.js
|
|
112
113
|
- assets/plugins/popper.min.js
|
|
114
|
+
- assets/resume/resume.pdf
|
|
113
115
|
- assets/scss/bootstrap/js/dist/alert.js
|
|
114
116
|
- assets/scss/bootstrap/js/dist/alert.js.map
|
|
115
117
|
- assets/scss/bootstrap/js/dist/button.js
|
data/assets/images/about-me.jpg
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|