jekyll-theme-awesome 0.1.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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +52 -0
- data/_includes/footer.html +6 -0
- data/_includes/head.html +56 -0
- data/_includes/header.html +23 -0
- data/_includes/styles.scss +3 -0
- data/_layouts/.DS_Store +0 -0
- data/_layouts/default.html +17 -0
- data/_layouts/page.html +6 -0
- data/_layouts/post.html +35 -0
- data/_sass/_globals.scss +137 -0
- data/_sass/_modules.scss +9 -0
- data/_sass/_variables.scss +8 -0
- data/_sass/modules/_archive.scss +30 -0
- data/_sass/modules/_footer.scss +3 -0
- data/_sass/modules/_header.scss +23 -0
- data/_sass/modules/_main.scss +15 -0
- data/_sass/modules/_pager.scss +15 -0
- data/_sass/modules/_post.scss +17 -0
- data/_sass/modules/_share.scss +17 -0
- data/_sass/modules/_wrap.scss +17 -0
- data/_sass/modules/syntax.scss +257 -0
- data/assets/android-chrome-144x144.png +0 -0
- data/assets/android-chrome-192x192.png +0 -0
- data/assets/android-chrome-36x36.png +0 -0
- data/assets/android-chrome-48x48.png +0 -0
- data/assets/android-chrome-72x72.png +0 -0
- data/assets/android-chrome-96x96.png +0 -0
- data/assets/apple-touch-icon-114x114.png +0 -0
- data/assets/apple-touch-icon-120x120.png +0 -0
- data/assets/apple-touch-icon-144x144.png +0 -0
- data/assets/apple-touch-icon-152x152.png +0 -0
- data/assets/apple-touch-icon-180x180.png +0 -0
- data/assets/apple-touch-icon-precomposed.png +0 -0
- data/assets/apple-touch-icon.png +0 -0
- data/assets/browserconfig.xml +12 -0
- data/assets/favicon-16x16.png +0 -0
- data/assets/favicon-32x32.png +0 -0
- data/assets/favicon.ico +0 -0
- data/assets/logo.png +0 -0
- data/assets/manifest.json +41 -0
- data/assets/mstile-144x144.png +0 -0
- data/assets/mstile-150x150.png +0 -0
- data/assets/mstile-310x150.png +0 -0
- data/assets/mstile-310x310.png +0 -0
- data/assets/mstile-70x70.png +0 -0
- data/assets/safari-pinned-tab.svg +34 -0
- metadata +133 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: d0177e8287c71c9a0914ed6558fa3b98afdbcb2d
|
4
|
+
data.tar.gz: f10839868f107dfdb20a5aced399f833872b79c5
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 3e45da1d167f8c3eab6733979678bc0f83053a8099ab90f6c0f0baaa39fc17c25168b28e94799f1042dae98986426a2536a926cb3dfd74e2ad80686ef802c488
|
7
|
+
data.tar.gz: 7cf2ff40516b8ea42bd13b0278f66d11b73c2e30359a343d62262ad3dba0a1a5a5b58becd35d8134fe1b8558ac897ed1109b0340703c0ef9de677c26eb466230
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Pawel Grzybek
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
# jekyll-theme-awesome
|
2
|
+
|
3
|
+
Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
|
4
|
+
|
5
|
+
To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
|
6
|
+
|
7
|
+
TODO: Delete this and the text above, and describe your gem
|
8
|
+
|
9
|
+
|
10
|
+
## Installation
|
11
|
+
|
12
|
+
Add this line to your Jekyll site's `Gemfile`:
|
13
|
+
|
14
|
+
```ruby
|
15
|
+
gem "jekyll-theme-awesome"
|
16
|
+
```
|
17
|
+
|
18
|
+
And add this line to your Jekyll site's `_config.yml`:
|
19
|
+
|
20
|
+
```yaml
|
21
|
+
theme: jekyll-theme-awesome
|
22
|
+
```
|
23
|
+
|
24
|
+
And then execute:
|
25
|
+
|
26
|
+
$ bundle
|
27
|
+
|
28
|
+
Or install it yourself as:
|
29
|
+
|
30
|
+
$ gem install jekyll-theme-awesome
|
31
|
+
|
32
|
+
## Usage
|
33
|
+
|
34
|
+
TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
|
35
|
+
|
36
|
+
## Contributing
|
37
|
+
|
38
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
39
|
+
|
40
|
+
## Development
|
41
|
+
|
42
|
+
To set up your environment to develop this theme, run `bundle install`.
|
43
|
+
|
44
|
+
Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
|
45
|
+
|
46
|
+
When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
|
47
|
+
To add a custom directory to your theme-gem, please edit the regexp in `jekyll-theme-awesome.gemspec` accordingly.
|
48
|
+
|
49
|
+
## License
|
50
|
+
|
51
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
52
|
+
|
data/_includes/head.html
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
<head>
|
2
|
+
|
3
|
+
<meta charset="utf-8">
|
4
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
6
|
+
<meta name="author" content="Pawel Grzybek - https://pawelgrzybek.com/">
|
7
|
+
|
8
|
+
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
|
9
|
+
|
10
|
+
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description | strip_html | strip_newlines }}{% endif %}">
|
11
|
+
|
12
|
+
<!-- Open graph data -->
|
13
|
+
<meta property="og:site_name" content="{{ site.title }}">
|
14
|
+
<meta property="og:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}">
|
15
|
+
<meta property="og:url" content="{% if page.title %}{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}{% else %}{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}{% endif %}">
|
16
|
+
<meta property="og:type" content="{% if page.title %}article{% else %}website{% endif %}">
|
17
|
+
<meta property="og:description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description | strip_html | strip_newlines }}{% endif %}">
|
18
|
+
<meta property="og:image" content="{% if page.photo %}{{ site.url }}/photos/{{ page.photo }}{% else %}{{ "/assets/logo.png" | prepend: site.url }}{% endif %}">
|
19
|
+
|
20
|
+
<!-- Twitter Card -->
|
21
|
+
<meta name="twitter:card" content="summary_large_image" />
|
22
|
+
<meta name="twitter:site" content="@pawelgrzybek" />
|
23
|
+
<meta name="twitter:creator" content="@pawelgrzybek" />
|
24
|
+
|
25
|
+
<!-- Standard Stuff -->
|
26
|
+
<link rel="canonical" href="{% if page.title %}{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}{% else %}{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}{% endif %}">
|
27
|
+
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" />
|
28
|
+
<link rel="alternate" type="application/json" title="{{ site.title }}" href="{{ "/feed.json" | prepend: site.baseurl | prepend: site.url }}" />
|
29
|
+
|
30
|
+
<!-- Favicons -->
|
31
|
+
<link rel="apple-touch-icon" sizes="114x114" href="/assets/apple-touch-icon-114x114.png">
|
32
|
+
<link rel="apple-touch-icon" sizes="120x120" href="/assets/apple-touch-icon-120x120.png">
|
33
|
+
<link rel="apple-touch-icon" sizes="144x144" href="/assets/apple-touch-icon-144x144.png">
|
34
|
+
<link rel="apple-touch-icon" sizes="152x152" href="/assets/apple-touch-icon-152x152.png">
|
35
|
+
<link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon-180x180.png">
|
36
|
+
<link rel="icon" type="image/png" href="/assets/favicon-16x16.png" sizes="16x16">
|
37
|
+
<link rel="icon" type="image/png" href="/assets/favicon-32x32.png" sizes="32x32">
|
38
|
+
<link rel="icon" type="image/png" href="/assets/android-chrome-192x192.png" sizes="192x192">
|
39
|
+
<link rel="manifest" href="/assets/manifest.json">
|
40
|
+
<link rel="mask-icon" href="/assets/safari-pinned-tab.svg" color="#5bbad5">
|
41
|
+
<link rel="shortcut icon" href="/assets/favicon.ico">
|
42
|
+
<meta name="msapplication-TileColor" content="#ffffff">
|
43
|
+
<meta name="msapplication-TileImage" content="/assets/mstile-144x144.png">
|
44
|
+
<meta name="msapplication-config" content="/assets/browserconfig.xml">
|
45
|
+
<meta name="theme-color" content="#ffffff">
|
46
|
+
|
47
|
+
{% capture styles %}
|
48
|
+
{% include styles.scss %}
|
49
|
+
{% endcapture %}
|
50
|
+
|
51
|
+
<!-- Styles -->
|
52
|
+
<style type="text/css">
|
53
|
+
{{ styles | scssify }}
|
54
|
+
</style>
|
55
|
+
|
56
|
+
</head>
|
@@ -0,0 +1,23 @@
|
|
1
|
+
<header class="header">
|
2
|
+
<div class="wrap">
|
3
|
+
{% if page.title %}
|
4
|
+
<div class="header__title">
|
5
|
+
<a href="{{ site.baseurl }}/" class="header__titleurl" title="{{ site.title }}">{{ site.title }}</a>
|
6
|
+
</div>
|
7
|
+
{% else %}
|
8
|
+
<h1 class="header__title">
|
9
|
+
<a href="{{ site.baseurl }}/" class="header__titleurl" title="{{ site.title }}">{{ site.title }}</a>
|
10
|
+
</h1>
|
11
|
+
{% endif %}
|
12
|
+
|
13
|
+
{% if page.layout != 'post' %}
|
14
|
+
<p>{{ site.description }}</p>
|
15
|
+
{% endif %}
|
16
|
+
|
17
|
+
<nav>
|
18
|
+
<a href="{{ site.baseurl }}/archive/" class="header__link" title="Archive">Archive</a>
|
19
|
+
<a href="http://twitter.com/{{ site.twitter_username }}" class="header__link" title="Paweł Grzybek on Twitter">Twitter</a>
|
20
|
+
<a href="http://github.com/{{ site.github_username }}" class="header__link" title="Paweł Grzybek on Github">Github</a>
|
21
|
+
</nav>
|
22
|
+
</div>
|
23
|
+
</header>
|
data/_layouts/.DS_Store
ADDED
Binary file
|
data/_layouts/page.html
ADDED
data/_layouts/post.html
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<article class="post">
|
6
|
+
<time class="post__date" datetime="{{ page.date | date: "%Y-%m-%d" }}">{{ page.date | date: "%b %-d, %Y" }}</time>
|
7
|
+
<h1 class="post__title">{{ page.title }}</h1>
|
8
|
+
{{ content }}
|
9
|
+
|
10
|
+
<a href="https://twitter.com/intent/tweet?text={{ page.title }}&url={{ site.url }}{{ page.url }}&via={{ site.twitter_username}}" class="share">
|
11
|
+
Tweet it
|
12
|
+
</a>
|
13
|
+
|
14
|
+
<a href="https://www.facebook.com/sharer/sharer.php?u={{ site.url }}{{ page.url }}" class="share">
|
15
|
+
Share on Facebook
|
16
|
+
</a>
|
17
|
+
|
18
|
+
{% if jekyll.environment == "production" %}
|
19
|
+
<div id="disqus_thread"></div>
|
20
|
+
<script type="text/javascript">
|
21
|
+
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
|
22
|
+
var disqus_shortname = 'studiorgb'; // required: replace example with your forum shortname
|
23
|
+
|
24
|
+
/* * * DON'T EDIT BELOW THIS LINE * * */
|
25
|
+
(function () {
|
26
|
+
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
27
|
+
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
|
28
|
+
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
29
|
+
})();
|
30
|
+
</script>
|
31
|
+
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
32
|
+
{% endif %}
|
33
|
+
|
34
|
+
</article>
|
35
|
+
|
data/_sass/_globals.scss
ADDED
@@ -0,0 +1,137 @@
|
|
1
|
+
@keyframes fade {
|
2
|
+
0% {
|
3
|
+
opacity: 0;
|
4
|
+
transform: translateX(.45rem);
|
5
|
+
}
|
6
|
+
|
7
|
+
100% {
|
8
|
+
opacity: 1;
|
9
|
+
transform: none;
|
10
|
+
}
|
11
|
+
}
|
12
|
+
|
13
|
+
::selection {
|
14
|
+
background: var(--color-text-links);
|
15
|
+
color: #fff;
|
16
|
+
text-shadow: none;
|
17
|
+
}
|
18
|
+
|
19
|
+
html {
|
20
|
+
font-size: 111.111111%;
|
21
|
+
-moz-osx-font-smoothing: grayscale;
|
22
|
+
-webkit-font-smoothing: antialiased;
|
23
|
+
font-smoothing: antialiased;
|
24
|
+
text-size-adjust: 100%;
|
25
|
+
box-sizing: border-box;
|
26
|
+
}
|
27
|
+
|
28
|
+
@media screen and (min-width: 1440px) {
|
29
|
+
html {
|
30
|
+
font-size: 138.888888889%;
|
31
|
+
}
|
32
|
+
}
|
33
|
+
|
34
|
+
*,
|
35
|
+
*::before,
|
36
|
+
*::after {
|
37
|
+
margin: 0;
|
38
|
+
padding: 0;
|
39
|
+
box-sizing: inherit;
|
40
|
+
}
|
41
|
+
|
42
|
+
body {
|
43
|
+
background-color: var(--color-gray);
|
44
|
+
color: var(--color-text-body);
|
45
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
46
|
+
font-size: 1rem;
|
47
|
+
line-height: 1.8rem;
|
48
|
+
}
|
49
|
+
|
50
|
+
img {
|
51
|
+
display: block;
|
52
|
+
max-width: 100%;
|
53
|
+
height: auto;
|
54
|
+
border: 0;
|
55
|
+
}
|
56
|
+
|
57
|
+
a {
|
58
|
+
background: transparent;
|
59
|
+
color: var(--color-text-links);
|
60
|
+
text-decoration: none;
|
61
|
+
word-wrap: break-word;
|
62
|
+
}
|
63
|
+
|
64
|
+
a:hover,
|
65
|
+
a:focus,
|
66
|
+
a:active {
|
67
|
+
text-decoration: underline;
|
68
|
+
}
|
69
|
+
|
70
|
+
p,
|
71
|
+
h1,
|
72
|
+
h2,
|
73
|
+
h3,
|
74
|
+
h4,
|
75
|
+
h5,
|
76
|
+
h6 {
|
77
|
+
margin-bottom: 1.8rem;
|
78
|
+
}
|
79
|
+
|
80
|
+
h1,
|
81
|
+
h2,
|
82
|
+
h3,
|
83
|
+
h4,
|
84
|
+
h5,
|
85
|
+
h6 {
|
86
|
+
margin-top: 2.7rem;
|
87
|
+
color: var(--color-text-headings);
|
88
|
+
font-weight: 700;
|
89
|
+
}
|
90
|
+
|
91
|
+
h1 {
|
92
|
+
font-size: 1.953rem;
|
93
|
+
line-height: 2.7rem;
|
94
|
+
}
|
95
|
+
|
96
|
+
h2 {
|
97
|
+
font-size: 1.563rem;
|
98
|
+
}
|
99
|
+
|
100
|
+
h3 {
|
101
|
+
font-size: 1.25rem;
|
102
|
+
}
|
103
|
+
|
104
|
+
h4 {
|
105
|
+
font-size: 1rem;
|
106
|
+
}
|
107
|
+
|
108
|
+
h5 {
|
109
|
+
font-size: .8rem;
|
110
|
+
}
|
111
|
+
|
112
|
+
h6 {
|
113
|
+
font-size: .64rem;
|
114
|
+
}
|
115
|
+
|
116
|
+
ul,
|
117
|
+
ol {
|
118
|
+
margin: 0 0 1.8rem 1.8rem;
|
119
|
+
}
|
120
|
+
|
121
|
+
hr {
|
122
|
+
display: block;
|
123
|
+
height: 1.8rem;
|
124
|
+
border: 0;
|
125
|
+
box-shadow: inset 0 1px 0 var(--color-gray);
|
126
|
+
}
|
127
|
+
|
128
|
+
blockquote {
|
129
|
+
margin-bottom: 1.8rem;
|
130
|
+
padding: 1.8rem;
|
131
|
+
background: var(--color-gray);
|
132
|
+
}
|
133
|
+
|
134
|
+
blockquote p {
|
135
|
+
margin: 0;
|
136
|
+
font-style: italic;
|
137
|
+
}
|
data/_sass/_modules.scss
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
.archive {
|
2
|
+
margin-left: 0;
|
3
|
+
list-style: none;
|
4
|
+
}
|
5
|
+
|
6
|
+
.archive__item {
|
7
|
+
padding: .9rem 0;
|
8
|
+
box-shadow: 0 1px 0 0 var(--color-gray);
|
9
|
+
}
|
10
|
+
|
11
|
+
.archive__item:last-of-type {
|
12
|
+
box-shadow: none;
|
13
|
+
}
|
14
|
+
|
15
|
+
.archive__date {
|
16
|
+
display: block;
|
17
|
+
font-size: .8rem;
|
18
|
+
opacity: var(--color-text-light);
|
19
|
+
}
|
20
|
+
|
21
|
+
.archive__link {
|
22
|
+
display: block;
|
23
|
+
color: inherit;
|
24
|
+
font-weight: 700;
|
25
|
+
}
|
26
|
+
|
27
|
+
.archive__link:hover,
|
28
|
+
.archive__link:focus {
|
29
|
+
color: var(--color-text-links);
|
30
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
.header {
|
2
|
+
padding: 3.6rem 0;
|
3
|
+
animation-name: fade;
|
4
|
+
animation-duration: 280ms;
|
5
|
+
animation-delay: 280ms;
|
6
|
+
animation-fill-mode: both;
|
7
|
+
}
|
8
|
+
|
9
|
+
.header__title {
|
10
|
+
font-size: 1rem;
|
11
|
+
font-weight: 700;
|
12
|
+
margin-top: 0;
|
13
|
+
margin-bottom: 1.8rem;
|
14
|
+
line-height: 1.8rem;
|
15
|
+
}
|
16
|
+
|
17
|
+
.header__titleurl {
|
18
|
+
color: var(--color-text-headings);
|
19
|
+
}
|
20
|
+
|
21
|
+
.header__link {
|
22
|
+
margin-right: .9rem;
|
23
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
.main {
|
2
|
+
background-color: #fff;
|
3
|
+
padding: 3.6rem 0;
|
4
|
+
animation-name: fade;
|
5
|
+
animation-duration: 420ms;
|
6
|
+
animation-delay: 420ms;
|
7
|
+
animation-fill-mode: both;
|
8
|
+
box-shadow: inset 0 0 0 1px var(--color-border);
|
9
|
+
}
|
10
|
+
|
11
|
+
@media screen and (min-width: 700px) {
|
12
|
+
.main {
|
13
|
+
margin: 0 1.8rem;
|
14
|
+
}
|
15
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
.share {
|
2
|
+
display: inline-block;
|
3
|
+
margin: 0 .9rem .9rem 0;
|
4
|
+
padding: 0 1.8rem;
|
5
|
+
|
6
|
+
font-size: .8rem;
|
7
|
+
line-height: 3.6rem;
|
8
|
+
box-shadow: inset 0 0 0 1px var(--color-text-links);
|
9
|
+
vertical-align: middle;
|
10
|
+
}
|
11
|
+
|
12
|
+
.share:hover,
|
13
|
+
.share:focus {
|
14
|
+
background-color: var(--color-text-links);
|
15
|
+
color: #fff;
|
16
|
+
fill: #fff;
|
17
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
.wrap {
|
2
|
+
width: 100%;
|
3
|
+
max-width: calc(700px + 3.6rem);
|
4
|
+
margin: 0 auto;
|
5
|
+
padding: 0 1.8rem;
|
6
|
+
|
7
|
+
// background-image: linear-gradient(rgba(50, 50, 50, .1) 1px, transparent 1px);
|
8
|
+
// background-size: 100% 32px;
|
9
|
+
}
|
10
|
+
|
11
|
+
@media screen and (min-width: 1440px) {
|
12
|
+
.wrap {
|
13
|
+
max-width: calc(800px + 3.6rem);
|
14
|
+
|
15
|
+
// background-size: 100% 40px;
|
16
|
+
}
|
17
|
+
}
|
@@ -0,0 +1,257 @@
|
|
1
|
+
pre,
|
2
|
+
code {
|
3
|
+
background: var(--color-gray);
|
4
|
+
vertical-align: top;
|
5
|
+
overflow-x: auto;
|
6
|
+
}
|
7
|
+
|
8
|
+
pre.highlight {
|
9
|
+
margin-bottom: 1.8rem;
|
10
|
+
padding: .9rem 1.35rem;
|
11
|
+
background: var(--color-gray);
|
12
|
+
box-shadow: inset 0 0 0 1px var(--color-border);
|
13
|
+
}
|
14
|
+
|
15
|
+
|
16
|
+
.c {
|
17
|
+
color: #998;
|
18
|
+
}
|
19
|
+
|
20
|
+
.err {
|
21
|
+
background-color: #e3d2d2;
|
22
|
+
color: #a61717;
|
23
|
+
}
|
24
|
+
|
25
|
+
.k {
|
26
|
+
font-weight: 400;
|
27
|
+
}
|
28
|
+
|
29
|
+
.o {
|
30
|
+
font-weight: 400;
|
31
|
+
}
|
32
|
+
|
33
|
+
.cm {
|
34
|
+
color: #998;
|
35
|
+
}
|
36
|
+
|
37
|
+
.cp {
|
38
|
+
color: #999;
|
39
|
+
font-weight: 400;
|
40
|
+
}
|
41
|
+
|
42
|
+
.c1 {
|
43
|
+
color: #998;
|
44
|
+
}
|
45
|
+
|
46
|
+
.cs {
|
47
|
+
color: #999;
|
48
|
+
font-weight: 400;
|
49
|
+
}
|
50
|
+
|
51
|
+
.gd {
|
52
|
+
background-color: #fdd;
|
53
|
+
color: #000;
|
54
|
+
}
|
55
|
+
|
56
|
+
.gd .x {
|
57
|
+
background-color: #faa;
|
58
|
+
color: #000;
|
59
|
+
}
|
60
|
+
|
61
|
+
.gr {
|
62
|
+
color: #a00;
|
63
|
+
}
|
64
|
+
|
65
|
+
.gh {
|
66
|
+
color: #999;
|
67
|
+
}
|
68
|
+
|
69
|
+
.gi {
|
70
|
+
background-color: #dfd;
|
71
|
+
color: #000;
|
72
|
+
}
|
73
|
+
|
74
|
+
.gi .x {
|
75
|
+
background-color: #afa;
|
76
|
+
color: #000;
|
77
|
+
}
|
78
|
+
|
79
|
+
.go {
|
80
|
+
color: #888;
|
81
|
+
}
|
82
|
+
|
83
|
+
.gp {
|
84
|
+
color: #555;
|
85
|
+
}
|
86
|
+
|
87
|
+
.gs {
|
88
|
+
font-weight: 400;
|
89
|
+
}
|
90
|
+
|
91
|
+
.gu {
|
92
|
+
color: #aaa;
|
93
|
+
}
|
94
|
+
|
95
|
+
.gt {
|
96
|
+
color: #a00;
|
97
|
+
}
|
98
|
+
|
99
|
+
.kc {
|
100
|
+
font-weight: 400;
|
101
|
+
}
|
102
|
+
|
103
|
+
.kd {
|
104
|
+
font-weight: 400;
|
105
|
+
}
|
106
|
+
|
107
|
+
.kp {
|
108
|
+
font-weight: 400;
|
109
|
+
}
|
110
|
+
|
111
|
+
.kr {
|
112
|
+
font-weight: 400;
|
113
|
+
}
|
114
|
+
|
115
|
+
.kt {
|
116
|
+
color: #458;
|
117
|
+
font-weight: 400;
|
118
|
+
}
|
119
|
+
|
120
|
+
.m {
|
121
|
+
color: #099;
|
122
|
+
}
|
123
|
+
|
124
|
+
.s {
|
125
|
+
color: #d14;
|
126
|
+
}
|
127
|
+
|
128
|
+
.na {
|
129
|
+
color: #008080;
|
130
|
+
}
|
131
|
+
|
132
|
+
.nb {
|
133
|
+
color: #0086b3;
|
134
|
+
}
|
135
|
+
|
136
|
+
.nc {
|
137
|
+
color: #458;
|
138
|
+
font-weight: 400;
|
139
|
+
}
|
140
|
+
|
141
|
+
.no {
|
142
|
+
color: #008080;
|
143
|
+
}
|
144
|
+
|
145
|
+
.ni {
|
146
|
+
color: #800080;
|
147
|
+
}
|
148
|
+
|
149
|
+
.ne {
|
150
|
+
color: #900;
|
151
|
+
font-weight: 400;
|
152
|
+
}
|
153
|
+
|
154
|
+
.nf {
|
155
|
+
color: #900;
|
156
|
+
font-weight: 400;
|
157
|
+
}
|
158
|
+
|
159
|
+
.nn {
|
160
|
+
color: #555;
|
161
|
+
}
|
162
|
+
|
163
|
+
.nt {
|
164
|
+
color: #000080;
|
165
|
+
}
|
166
|
+
|
167
|
+
.nv {
|
168
|
+
color: #008080;
|
169
|
+
}
|
170
|
+
|
171
|
+
.ow {
|
172
|
+
font-weight: 400;
|
173
|
+
}
|
174
|
+
|
175
|
+
.w {
|
176
|
+
color: #bbb;
|
177
|
+
}
|
178
|
+
|
179
|
+
.mf {
|
180
|
+
color: #099;
|
181
|
+
}
|
182
|
+
|
183
|
+
.mh {
|
184
|
+
color: #099;
|
185
|
+
}
|
186
|
+
|
187
|
+
.mi {
|
188
|
+
color: #099;
|
189
|
+
}
|
190
|
+
|
191
|
+
.mo {
|
192
|
+
color: #099;
|
193
|
+
}
|
194
|
+
|
195
|
+
.sb {
|
196
|
+
color: #d14;
|
197
|
+
}
|
198
|
+
|
199
|
+
.sc {
|
200
|
+
color: #d14;
|
201
|
+
}
|
202
|
+
|
203
|
+
.sd {
|
204
|
+
color: #d14;
|
205
|
+
}
|
206
|
+
|
207
|
+
.s2 {
|
208
|
+
color: #d14;
|
209
|
+
}
|
210
|
+
|
211
|
+
.se {
|
212
|
+
color: #d14;
|
213
|
+
}
|
214
|
+
|
215
|
+
.sh {
|
216
|
+
color: #d14;
|
217
|
+
}
|
218
|
+
|
219
|
+
.si {
|
220
|
+
color: #d14;
|
221
|
+
}
|
222
|
+
|
223
|
+
.sx {
|
224
|
+
color: #d14;
|
225
|
+
}
|
226
|
+
|
227
|
+
.sr {
|
228
|
+
color: #009926;
|
229
|
+
}
|
230
|
+
|
231
|
+
.s1 {
|
232
|
+
color: #d14;
|
233
|
+
}
|
234
|
+
|
235
|
+
.ss {
|
236
|
+
color: #990073;
|
237
|
+
}
|
238
|
+
|
239
|
+
.bp {
|
240
|
+
color: #999;
|
241
|
+
}
|
242
|
+
|
243
|
+
.vc {
|
244
|
+
color: #008080;
|
245
|
+
}
|
246
|
+
|
247
|
+
.vg {
|
248
|
+
color: #008080;
|
249
|
+
}
|
250
|
+
|
251
|
+
.vi {
|
252
|
+
color: #008080;
|
253
|
+
}
|
254
|
+
|
255
|
+
.il {
|
256
|
+
color: #099;
|
257
|
+
}
|
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
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<browserconfig>
|
3
|
+
<msapplication>
|
4
|
+
<tile>
|
5
|
+
<square70x70logo src="/assets/mstile-70x70.png"/>
|
6
|
+
<square150x150logo src="/assets/mstile-150x150.png"/>
|
7
|
+
<square310x310logo src="/assets/mstile-310x310.png"/>
|
8
|
+
<wide310x150logo src="/assets/mstile-310x150.png"/>
|
9
|
+
<TileColor>#da532c</TileColor>
|
10
|
+
</tile>
|
11
|
+
</msapplication>
|
12
|
+
</browserconfig>
|
Binary file
|
Binary file
|
data/assets/favicon.ico
ADDED
Binary file
|
data/assets/logo.png
ADDED
Binary file
|
@@ -0,0 +1,41 @@
|
|
1
|
+
{
|
2
|
+
"name": "pawelgrzybek.com",
|
3
|
+
"icons": [
|
4
|
+
{
|
5
|
+
"src": "\/assets\/android-chrome-36x36.png",
|
6
|
+
"sizes": "36x36",
|
7
|
+
"type": "image\/png",
|
8
|
+
"density": 0.75
|
9
|
+
},
|
10
|
+
{
|
11
|
+
"src": "\/assets\/android-chrome-48x48.png",
|
12
|
+
"sizes": "48x48",
|
13
|
+
"type": "image\/png",
|
14
|
+
"density": 1
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"src": "\/assets\/android-chrome-72x72.png",
|
18
|
+
"sizes": "72x72",
|
19
|
+
"type": "image\/png",
|
20
|
+
"density": 1.5
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"src": "\/assets\/android-chrome-96x96.png",
|
24
|
+
"sizes": "96x96",
|
25
|
+
"type": "image\/png",
|
26
|
+
"density": 2
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"src": "\/assets\/android-chrome-144x144.png",
|
30
|
+
"sizes": "144x144",
|
31
|
+
"type": "image\/png",
|
32
|
+
"density": 3
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"src": "\/assets\/android-chrome-192x192.png",
|
36
|
+
"sizes": "192x192",
|
37
|
+
"type": "image\/png",
|
38
|
+
"density": 4
|
39
|
+
}
|
40
|
+
]
|
41
|
+
}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,34 @@
|
|
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="260.000000pt" height="260.000000pt" viewBox="0 0 260.000000 260.000000"
|
6
|
+
preserveAspectRatio="xMidYMid meet">
|
7
|
+
<metadata>
|
8
|
+
Created by potrace 1.11, written by Peter Selinger 2001-2013
|
9
|
+
</metadata>
|
10
|
+
<g transform="translate(0.000000,260.000000) scale(0.100000,-0.100000)"
|
11
|
+
fill="#000000" stroke="none">
|
12
|
+
<path d="M810 2520 l0 -80 -160 0 -160 0 0 -80 0 -80 160 0 160 0 0 80 0 80
|
13
|
+
165 0 165 0 0 -165 0 -165 -80 0 -80 0 0 -80 0 -80 -330 0 -330 0 0 80 0 80
|
14
|
+
-80 0 -81 0 3 -162 3 -163 -82 3 -83 3 0 -491 0 -491 82 3 83 3 -3 -82 -3 -83
|
15
|
+
85 0 86 0 0 -160 0 -160 75 0 75 0 0 160 0 160 85 0 85 0 0 85 0 85 163 -2
|
16
|
+
162 -3 3 -162 2 -163 75 0 75 0 2 163 3 162 165 0 165 0 3 -162 2 -163 75 0
|
17
|
+
75 0 2 163 3 162 163 3 162 2 0 -85 0 -85 85 0 85 0 0 -160 0 -160 75 0 75 0
|
18
|
+
0 160 0 160 85 0 85 0 0 80 0 80 80 0 80 0 0 491 0 490 -82 -3 -83 -3 3 163 3
|
19
|
+
162 -80 0 -81 0 -2 -162 -3 -163 -80 0 -80 0 -3 83 -3 82 -79 0 -80 0 0 80 0
|
20
|
+
79 -82 3 -83 3 0 80 0 80 163 3 162 2 0 81 0 80 -162 -3 -163 -3 3 83 3 82
|
21
|
+
-490 0 -491 0 0 -80z m980 -650 l0 -80 80 0 80 0 0 -245 0 -245 -80 0 -79 0
|
22
|
+
-3 -82 -3 -83 -325 0 -325 0 -3 83 -3 82 -79 0 -80 0 0 245 0 245 80 0 80 0 0
|
23
|
+
80 0 80 330 0 330 0 0 -80z m-1140 -160 l0 -79 83 -3 82 -3 0 -245 0 -245 -82
|
24
|
+
-3 -83 -3 0 -79 0 -80 -165 0 -165 0 0 80 0 80 -80 0 -80 0 0 250 0 250 80 0
|
25
|
+
80 0 0 80 0 80 165 0 165 0 0 -80z m1790 -570 l0 -330 -85 0 -85 0 0 80 0 80
|
26
|
+
-80 0 -80 0 0 165 0 165 80 0 80 0 0 78 c0 43 3 82 7 85 3 4 42 7 85 7 l78 0
|
27
|
+
0 -330z"/>
|
28
|
+
<path d="M330 2195 l0 -75 75 0 75 0 0 75 0 75 -75 0 -75 0 0 -75z"/>
|
29
|
+
<path d="M2120 2195 l0 -75 75 0 75 0 0 75 0 75 -75 0 -75 0 0 -75z"/>
|
30
|
+
<path d="M490 240 l0 -80 80 0 80 0 0 -80 0 -80 650 0 650 0 0 80 0 80 80 0
|
31
|
+
80 0 0 80 0 80 -80 0 -80 0 0 -80 0 -80 -650 0 -650 0 0 80 0 80 -80 0 -80 0
|
32
|
+
0 -80z"/>
|
33
|
+
</g>
|
34
|
+
</svg>
|
metadata
ADDED
@@ -0,0 +1,133 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jekyll-theme-awesome
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Pawel Grzybek
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-11-30 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: jekyll
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.6'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.6'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.12'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.12'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
description:
|
56
|
+
email:
|
57
|
+
- pawelgrzybek@users.noreply.github.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- LICENSE.txt
|
63
|
+
- README.md
|
64
|
+
- _includes/footer.html
|
65
|
+
- _includes/head.html
|
66
|
+
- _includes/header.html
|
67
|
+
- _includes/styles.scss
|
68
|
+
- _layouts/.DS_Store
|
69
|
+
- _layouts/default.html
|
70
|
+
- _layouts/page.html
|
71
|
+
- _layouts/post.html
|
72
|
+
- _sass/_globals.scss
|
73
|
+
- _sass/_modules.scss
|
74
|
+
- _sass/_variables.scss
|
75
|
+
- _sass/modules/_archive.scss
|
76
|
+
- _sass/modules/_footer.scss
|
77
|
+
- _sass/modules/_header.scss
|
78
|
+
- _sass/modules/_main.scss
|
79
|
+
- _sass/modules/_pager.scss
|
80
|
+
- _sass/modules/_post.scss
|
81
|
+
- _sass/modules/_share.scss
|
82
|
+
- _sass/modules/_wrap.scss
|
83
|
+
- _sass/modules/syntax.scss
|
84
|
+
- assets/android-chrome-144x144.png
|
85
|
+
- assets/android-chrome-192x192.png
|
86
|
+
- assets/android-chrome-36x36.png
|
87
|
+
- assets/android-chrome-48x48.png
|
88
|
+
- assets/android-chrome-72x72.png
|
89
|
+
- assets/android-chrome-96x96.png
|
90
|
+
- assets/apple-touch-icon-114x114.png
|
91
|
+
- assets/apple-touch-icon-120x120.png
|
92
|
+
- assets/apple-touch-icon-144x144.png
|
93
|
+
- assets/apple-touch-icon-152x152.png
|
94
|
+
- assets/apple-touch-icon-180x180.png
|
95
|
+
- assets/apple-touch-icon-precomposed.png
|
96
|
+
- assets/apple-touch-icon.png
|
97
|
+
- assets/browserconfig.xml
|
98
|
+
- assets/favicon-16x16.png
|
99
|
+
- assets/favicon-32x32.png
|
100
|
+
- assets/favicon.ico
|
101
|
+
- assets/logo.png
|
102
|
+
- assets/manifest.json
|
103
|
+
- assets/mstile-144x144.png
|
104
|
+
- assets/mstile-150x150.png
|
105
|
+
- assets/mstile-310x150.png
|
106
|
+
- assets/mstile-310x310.png
|
107
|
+
- assets/mstile-70x70.png
|
108
|
+
- assets/safari-pinned-tab.svg
|
109
|
+
homepage: https://pawelgrzybek.com/
|
110
|
+
licenses:
|
111
|
+
- MIT
|
112
|
+
metadata: {}
|
113
|
+
post_install_message:
|
114
|
+
rdoc_options: []
|
115
|
+
require_paths:
|
116
|
+
- lib
|
117
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
118
|
+
requirements:
|
119
|
+
- - ">="
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: '0'
|
122
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
123
|
+
requirements:
|
124
|
+
- - ">="
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
version: '0'
|
127
|
+
requirements: []
|
128
|
+
rubyforge_project:
|
129
|
+
rubygems_version: 2.6.14
|
130
|
+
signing_key:
|
131
|
+
specification_version: 4
|
132
|
+
summary: Awesome theme for my personal website. Feel free to use it if you like it.
|
133
|
+
test_files: []
|