simplicity 0.0.17 → 0.0.18

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2dedfd2d9fdf94ac953fb973556e0010d38e1eef
4
- data.tar.gz: 29b0c8969c8ce7939d0e42c3a0ce3f33ef89829a
3
+ metadata.gz: 17806d9bb34c055f51d53db4569f23947307653f
4
+ data.tar.gz: 35cb58d76c1a535d092f828076835dbd9a8c66bb
5
5
  SHA512:
6
- metadata.gz: aba657d8ea96f720842f2024b3eb3cc0f01e781818acd63ac58742339e5a0efb752c252a1a2ac8e15148a81de1ed62319bbe1fe21d80908e3a45598c27d57730
7
- data.tar.gz: e41ecafda08a964c371a43e1961a361a5052c9405e22ef095b3861d059f0b2e58a3546da441c0ad8fa82a714c26c42709f8ab8a33f54c75f7f1014378800d70a
6
+ metadata.gz: 3f444866dbad78e432ddc2494b0bdf6578c551799018cedcf75083478a89ed424b298d12fe4a5ecbf76b8bb90913355dcbe0d49e82e0f1c956237db8cdd742e2
7
+ data.tar.gz: c81f6b45aa5b23d2fd1128f728646b85684d1f6f86c987f388c2bf29c178282222b174ce8105e03b675c2c85dd7c03c9455e2684e50f4f95ff3a096155f23881
@@ -1,7 +1,7 @@
1
- <link rel="shortcut icon" type="image/png" href="{{ "/assets/favicon.ico" | relative_url }}">
2
- <link rel="apple-touch-icon" sizes="180x180" href="{{ "/assets/apple-touch-icon.png" | relative_url }}">
3
- <link rel="icon" type="image/png" sizes="32x32" href="{{ "/assets/favicon-32x32.png" | relative_url }}">
4
- <link rel="icon" type="image/png" sizes="16x16" href="{{ "/assets/favicon-16x16.png" | relative_url }}">
5
- <link rel="manifest" href="{{ "/assets/manifest.json" | relative_url }}">
6
- <link rel="mask-icon" href="{{ "/assets/safari-pinned-tab.svg" | relative_url }}" color="#5bbad5">
1
+ <link rel="shortcut icon" type="image/png" href="{% asset_path favicon.ico %}">
2
+ <link rel="apple-touch-icon" sizes="180x180" href="{% asset_path apple-touch-icon.png %}">
3
+ <link rel="icon" type="image/png" sizes="32x32" href="{% asset_path favicon-32x32.png %}">
4
+ <link rel="icon" type="image/png" sizes="16x16" href="{% asset_path favicon-16x16.png %}">
5
+ <link rel="manifest" href="{% asset_path manifest.json %}">
6
+ <link rel="mask-icon" href="{% asset_path safari-pinned-tab.svg %}" color="#5bbad5">
7
7
  <meta name="theme-color" content="#ffffff">
data/_includes/head.html CHANGED
@@ -6,7 +6,6 @@
6
6
  <title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
7
7
  <meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
8
8
 
9
- <link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
10
9
  <link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
11
10
  <link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}">
12
11
 
@@ -14,8 +13,6 @@
14
13
  {% include google-analytics.html %}
15
14
  {% endif %}
16
15
  {% include favicon.html %}
17
- <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
18
- <script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.11/semantic.min.js"></script>
19
- <script src="{{ "/assets/main.js" | relative_url }}"></script>
20
- {% stylesheet simplicity %}
16
+ {% css simplicity %}
17
+ {% js simplicity %}
21
18
  </head>
@@ -3,7 +3,7 @@
3
3
  {% assign default_paths = site.pages | map: "path" %}
4
4
  {% assign page_paths = site.header_pages | default: default_paths %}
5
5
  <a class="item ui image" href="{{ "/" | relative_url }}">
6
- <img src="/assets/icon_avatar.jpg" alt="Icon avatar" />
6
+ <img src="{% asset_path icon_avatar.jpg %}" alt="Icon avatar" />
7
7
  </a>
8
8
  {% if page_paths %}
9
9
  {% for path in page_paths %}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simplicity
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.17
4
+ version: 0.0.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - bananaappletw
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-25 00:00:00.000000000 Z
11
+ date: 2017-11-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -24,20 +24,6 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '3.5'
27
- - !ruby/object:Gem::Dependency
28
- name: sprockets
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: '3.0'
34
- type: :runtime
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: '3.0'
41
27
  - !ruby/object:Gem::Dependency
42
28
  name: jekyll-assets
43
29
  requirement: !ruby/object:Gem::Requirement
@@ -176,36 +162,6 @@ files:
176
162
  - _layouts/default.html
177
163
  - _layouts/page.html
178
164
  - _layouts/post.html
179
- - assets/android-chrome-192x192.png
180
- - assets/android-chrome-384x384.png
181
- - assets/apple-touch-icon.png
182
- - assets/bamboofox-website.gif
183
- - assets/bamboofox.png
184
- - assets/browserconfig.xml
185
- - assets/favicon-16x16.png
186
- - assets/favicon-32x32.png
187
- - assets/favicon.ico
188
- - assets/icon_avatar.jpg
189
- - assets/koa2-examples.png
190
- - assets/main.coffee
191
- - assets/main.scss
192
- - assets/manifest.json
193
- - assets/med.gif
194
- - assets/mstile-150x150.png
195
- - assets/nctu-logo.jpg
196
- - assets/nctu-restaurant-survey.png
197
- - assets/nctu-review.png
198
- - assets/nctucsc.png
199
- - assets/nctustunion.jpg
200
- - assets/profile.jpg
201
- - assets/resume.pdf
202
- - assets/safari-pinned-tab.svg
203
- - assets/simplicity.gif
204
- - assets/simplicity.scss
205
- - assets/simplicity/_base.scss
206
- - assets/simplicity/_layout.scss
207
- - assets/simplicity/_syntax.scss
208
- - assets/symgdb.gif
209
165
  homepage: https://github.com/bananaappletw/simplicity
210
166
  licenses:
211
167
  - MIT
@@ -226,7 +182,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
226
182
  version: '0'
227
183
  requirements: []
228
184
  rubyforge_project:
229
- rubygems_version: 2.6.13
185
+ rubygems_version: 2.6.8
230
186
  signing_key:
231
187
  specification_version: 4
232
188
  summary: 'simplicity: simple theme built by flexbox'
Binary file
Binary file
Binary file
Binary file
data/assets/bamboofox.png DELETED
Binary file
@@ -1,9 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <browserconfig>
3
- <msapplication>
4
- <tile>
5
- <square150x150logo src="/mstile-150x150.png"/>
6
- <TileColor>#da532c</TileColor>
7
- </tile>
8
- </msapplication>
9
- </browserconfig>
Binary file
Binary file
data/assets/favicon.ico DELETED
Binary file
Binary file
Binary file
data/assets/main.coffee DELETED
@@ -1,5 +0,0 @@
1
- ---
2
- ---
3
- $ ->
4
- $(".progress").progress();
5
- $('.accordion').accordion();
data/assets/main.scss DELETED
@@ -1 +0,0 @@
1
- @import "simplicity";
data/assets/manifest.json DELETED
@@ -1,18 +0,0 @@
1
- {
2
- "name": "",
3
- "icons": [
4
- {
5
- "src": "/android-chrome-192x192.png",
6
- "sizes": "192x192",
7
- "type": "image/png"
8
- },
9
- {
10
- "src": "/android-chrome-384x384.png",
11
- "sizes": "384x384",
12
- "type": "image/png"
13
- }
14
- ],
15
- "theme_color": "#ffffff",
16
- "background_color": "#ffffff",
17
- "display": "standalone"
18
- }
data/assets/med.gif DELETED
Binary file
Binary file
data/assets/nctu-logo.jpg DELETED
Binary file
Binary file
Binary file
data/assets/nctucsc.png DELETED
Binary file
Binary file
data/assets/profile.jpg DELETED
Binary file
data/assets/resume.pdf DELETED
Binary file
@@ -1,15 +0,0 @@
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="447.000000pt" height="447.000000pt" viewBox="0 0 447.000000 447.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,447.000000) scale(0.100000,-0.100000)"
11
- fill="#000000" stroke="none">
12
- <path d="M40 2235 l0 -2235 2195 0 2195 0 0 2235 0 2235 -2195 0 -2195 0 0
13
- -2235z"/>
14
- </g>
15
- </svg>
@@ -1,29 +0,0 @@
1
- pre,
2
- code {
3
- border: 1px solid grey;
4
- border-radius: 3px;
5
- background-color: #eef;
6
- }
7
-
8
- code {
9
- padding: 1px 5px;
10
- }
11
-
12
- pre {
13
- padding: 8px 12px;
14
- overflow-x: auto;
15
-
16
- > code {
17
- border: 0;
18
- padding-right: 0;
19
- padding-left: 0;
20
- }
21
- }
22
- .card {
23
- .image
24
- {
25
- width: 300px;
26
- height: 150px;
27
- overflow: hidden;
28
- }
29
- }
@@ -1,20 +0,0 @@
1
- body{
2
- display: flex;
3
- flex-direction: column;
4
- min-height: 100vh;
5
- }
6
-
7
- #header{
8
- flex: none;
9
- border-radius: 0;
10
- }
11
-
12
- main{
13
- flex: 1 0 auto;
14
- background-color: pink;
15
- }
16
-
17
- #footer{
18
- flex: none;
19
- border-radius: 0;
20
- }
@@ -1,77 +0,0 @@
1
- .highlight table td { padding: 5px; }
2
- .highlight table pre { margin: 0; }
3
- .highlight, .highlight .w {
4
- color: #303030;
5
- }
6
- .highlight .err {
7
- color: #151515;
8
- background-color: #ac4142;
9
- }
10
- .highlight .c, .highlight .cd, .highlight .cm, .highlight .c1, .highlight .cs {
11
- color: #505050;
12
- }
13
- .highlight .cp {
14
- color: #f4bf75;
15
- }
16
- .highlight .nt {
17
- color: #f4bf75;
18
- }
19
- .highlight .o, .highlight .ow {
20
- color: #d0d0d0;
21
- }
22
- .highlight .p, .highlight .pi {
23
- color: #d0d0d0;
24
- }
25
- .highlight .gi {
26
- color: #90a959;
27
- }
28
- .highlight .gd {
29
- color: #ac4142;
30
- }
31
- .highlight .gh {
32
- color: #6a9fb5;
33
- background-color: #151515;
34
- font-weight: bold;
35
- }
36
- .highlight .k, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kv {
37
- color: #aa759f;
38
- }
39
- .highlight .kc {
40
- color: #d28445;
41
- }
42
- .highlight .kt {
43
- color: #d28445;
44
- }
45
- .highlight .kd {
46
- color: #d28445;
47
- }
48
- .highlight .s, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .s2, .highlight .sh, .highlight .sx, .highlight .s1 {
49
- color: #90a959;
50
- }
51
- .highlight .sr {
52
- color: #75b5aa;
53
- }
54
- .highlight .si {
55
- color: #8f5536;
56
- }
57
- .highlight .se {
58
- color: #8f5536;
59
- }
60
- .highlight .nn {
61
- color: #f4bf75;
62
- }
63
- .highlight .nc {
64
- color: #f4bf75;
65
- }
66
- .highlight .no {
67
- color: #f4bf75;
68
- }
69
- .highlight .na {
70
- color: #6a9fb5;
71
- }
72
- .highlight .m, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mb, .highlight .mx {
73
- color: #90a959;
74
- }
75
- .highlight .ss {
76
- color: #90a959;
77
- }
Binary file
@@ -1,7 +0,0 @@
1
- @charset "utf-8";
2
- @import
3
- "simplicity/base",
4
- "simplicity/layout",
5
- "simplicity/syntax"
6
- ;
7
- @import "semantic-ui";
data/assets/symgdb.gif DELETED
Binary file