jekyll-theme-simpleton 0.5.0 → 0.9.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 22bba17131f8438fcc7f3bf03c88c0a96a729c9bc2e2ba7140498989f4f3a22d
4
- data.tar.gz: 1ae833a21d06742cef9aaea3d7722b15e45912460417f6e7adb7aa17f057eb5c
3
+ metadata.gz: ed4d2f8e401197b3eb4291a181cb2dbd2f3f99f6424167973b20ba474c1cb75d
4
+ data.tar.gz: 7dff2fd6dda32c0c19d08bb5d7ef499a26b06f99230063b196e68960363ced81
5
5
  SHA512:
6
- metadata.gz: d93ae4755d6650cf3a9a241f579713f8c74b2404837b1324aa09eb68c85905e0a467fa94b576728b72b20bdb2cde6c9f191727fb2f0827b18dfe52e6fae3fec3
7
- data.tar.gz: ea6de4dc366438bf2710737a5162c75c85d57c63ffb65e1e5f735f9f16430d620937715997cb2c0f1d7142413a09633b2f989f6e2ae9feafc040a4d038c1007f
6
+ metadata.gz: 5286db90237fc1351a1cea3fe56e9f1faffc8427b95198b7e3b607c9105c42ffeb1ffd5ade6a7312a0623a37c048725db55db4f846501e43712967aae0a2e39a
7
+ data.tar.gz: f883859bfec426ecfbbd4b926c357b0c43f2e11763d2c89d80b0181024efb38158b11c9bb20b7730fb598eb9105c034873fd0f03bd797a81486fcbc7aed4efd5
data/_config.yml CHANGED
@@ -1,5 +1,6 @@
1
1
  # Global Configuration
2
2
  title: Jekyll Theme Simpleton
3
+ author: anwait
3
4
 
4
5
  plugins:
5
6
  - jekyll-seo-tag
@@ -7,13 +8,31 @@ plugins:
7
8
  date_format: "%F"
8
9
 
9
10
  defaults:
10
- -
11
- scope:
11
+ - scope:
12
12
  path: ""
13
13
  type: "posts"
14
14
  values:
15
15
  layout: "post"
16
+ - scope:
17
+ path: ""
18
+ type: "pages"
19
+ values:
20
+ layout: "page"
21
+
22
+ show_excerpts: true
16
23
 
24
+ ## Exclude
25
+ ### Exclude directories and/or files from the conversion. These exclusions are
26
+ ### relative to the site's source directory and cannot be outside the source
27
+ ### directory.
28
+ exclude:
29
+ - Rakefile
30
+ - "*.gemspec"
31
+ - package.json
32
+ - README.md
33
+ - LICENSE.md
34
+ - yarn.lock
35
+ - pkg/
17
36
 
18
37
  # Build Command Options
19
38
  ## Liquid Profiler
@@ -21,8 +40,10 @@ defaults:
21
40
  ### bottlenecks.
22
41
  profile: true
23
42
 
24
-
25
43
  ## Strict Front Matter
26
44
  ### Cause a build to fail if there is a YAML syntax error in a page's front
27
45
  ### matter.
28
46
  strict_front_matter: true
47
+
48
+ sass:
49
+ style: compressed
@@ -0,0 +1,7 @@
1
+ {%- assign tag = include.tag | default: "p" -%}
2
+
3
+ {%- assign date_format = include.date_format | default: "%Y" -%}
4
+
5
+ <{{ tag }} id="copyright">
6
+ Copyright &#169; {{ site.time | date: date_format }} {{ site.author }}
7
+ </{{ tag }}>
@@ -1,3 +1,5 @@
1
1
  <footer id="footer">
2
- <!-- TOOD: currently not used -->
2
+
3
+ {%- include copyright.html -%}
4
+
3
5
  </footer> <!-- #footer -->
@@ -1,13 +1,13 @@
1
1
  <header id="header">
2
2
  <h1 id="site-title">
3
- {{ site.title }}
3
+ {{- site.title -}}
4
4
  </h1> <!-- #site-title -->
5
5
 
6
- {% if site.subtitle %}
7
- <p id="site-subtitle">
8
- {{ site.subtitle }}
9
- </p> <!-- #site-subtitle -->
10
- {% endif %}
6
+ {%- if site.subtitle -%}
7
+ <p id="site-subtitle">
8
+ {{- site.subtitle -}}
9
+ </p> <!-- #site-subtitle -->
10
+ {%- endif -%}
11
11
 
12
- {% include menu.html %}
12
+ {%- include menu.html -%}
13
13
  </header> <!-- #header -->
data/_includes/menu.html CHANGED
@@ -1,17 +1,25 @@
1
- {% assign sorted_pages = site.html_pages | sort: "menu_weight", "last" %}
1
+ {%- assign sorted_pages = site.html_pages | sort: "menu_weight", "last" -%}
2
2
 
3
+ {%- if sorted_paged.size > 1 -%}
3
4
  <nav id="menu">
4
5
  <ul class="menu-list">
5
- {% for p in sorted_pages %}
6
- {% unless p.hidden %}
7
- <li
8
- class="menu-item {% if p.url == page.url %}menu-selected{% endif %}"
9
- >
10
- <a class="menu-link" href="{{ p.url }}">
11
- {{ p.title }}
12
- </a> <!-- .menu-link -->
13
- </li> <!-- .menu-item -->
14
- {% endunless %}
15
- {% endfor %}
6
+
7
+ {%- for p in sorted_pages -%}
8
+
9
+ {%- unless p.hidden -%}
10
+
11
+ <li class="menu-item {% if p.url == page.url %}menu-selected{% endif %}">
12
+ <a class="menu-link" href="{{ p.url }}">
13
+
14
+ {{- p.title -}}
15
+
16
+ </a> <!-- .menu-link -->
17
+ </li> <!-- .menu-item -->
18
+
19
+ {%- endunless -%}
20
+
21
+ {%- endfor -%}
22
+
16
23
  </ul> <!-- .menu-list -->
17
- </nav> <!-- #menu -->
24
+ </nav> <!-- #menu -->
25
+ {%- endif -%}
@@ -0,0 +1,55 @@
1
+ {%- if site.paginate -%}
2
+
3
+ {%- assign posts = paginator.posts -%}
4
+
5
+ {%- else -%}
6
+
7
+ {%- assign posts = site.posts -%}
8
+
9
+ {%- endif -%}
10
+
11
+ {%- if posts.size > 0 -%}
12
+
13
+ {%- assign date_format = site.date_format -%}
14
+
15
+ <section id="post-listing">
16
+ <header id="post-listing-header">
17
+ <h2 id="post-listing-heading">
18
+
19
+ {{- posts.list_title | default: "Posts" -}}
20
+
21
+ </h2> <!-- #post-listing-heading -->
22
+ </header> <!-- #post-listing-header -->
23
+ <ul class="post-list">
24
+
25
+ {%- for post in posts -%}
26
+
27
+ <li class="post-item">
28
+ <span class="post-meta">
29
+
30
+ {{- post.date | date: date_format -}}
31
+
32
+ </span>
33
+ <a class="post-link" href="{{ post.url | relative_url }}">
34
+ {{ post.title | escape }}
35
+ </a>
36
+
37
+ {%- if site.show_excerpts -%}
38
+
39
+ <div class="post-excerpt">
40
+
41
+ {{- post.excerpt -}}
42
+
43
+ </div>
44
+
45
+ {%- endif -%}
46
+
47
+
48
+ </li> <!-- .post-item -->
49
+
50
+ {%- endfor -%}
51
+
52
+ </ul> <!-- .post-list -->
53
+ </section> <!-- #post-listing -->
54
+
55
+ {%- endif -%}
@@ -0,0 +1,33 @@
1
+ {%- if page.series -%}
2
+
3
+ {%- assign series_posts = site.posts | where: "series", page.series | reverse -%}
4
+
5
+ <ol id="series">
6
+
7
+ {%- for post in series_posts -%}
8
+
9
+ <li>
10
+ <a href="{{ post.url | relative_url }}">
11
+
12
+ {%- if post.url == page.url -%}
13
+
14
+ <em>
15
+
16
+ {%- endif -%}
17
+
18
+ {{- post.title -}}
19
+
20
+ {%- if post.url == page.url -%}
21
+
22
+ </em>
23
+
24
+ {%- endif -%}
25
+
26
+ </a>
27
+ </li>
28
+
29
+ {%- endfor -%}
30
+
31
+ </ol> <!-- #series -->
32
+
33
+ {%- endif -%}
@@ -1,13 +1,20 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang="{{ page.lang | default: site.lang | default: 'en' }}">
3
- {% include head.html %}
4
- <body>
5
- <div id="layout">
6
- {% include header.html %}
7
- <main id="main">
8
- {{ content }}
9
- </main> <!-- #main -->
10
- {% include footer.html %}
11
- </div> <!-- #layout -->
12
- </body>
3
+
4
+ {%- include head.html -%}
5
+
6
+ <body>
7
+ <div id="layout">
8
+
9
+ {%- include header.html -%}
10
+
11
+ <main id="main">
12
+ {{- content -}}
13
+ </main> <!-- #main -->
14
+
15
+ {%- include footer.html -%}
16
+
17
+ </div> <!-- #layout -->
18
+ </body>
19
+
13
20
  </html>
data/_layouts/home.html CHANGED
@@ -2,38 +2,8 @@
2
2
  layout: default
3
3
  ---
4
4
 
5
- <section id="hero">
6
- {{ content }}
7
- </section> <!-- #hero -->
5
+ <div id="hero">
6
+ {{- content -}}
7
+ </div> <!-- #hero -->
8
8
 
9
- {% if site.paginate %}
10
- {% assign posts = paginator.posts %}
11
- {% else %}
12
- {% assign posts = site.posts %}
13
- {% endif %}
14
-
15
- {% if posts.size > 0 %}
16
- {% assign date_format = site.date_format %}
17
- <section id="post-listing">
18
- <header id="post-listing-header">
19
- <h2 id="post-listing-heading">
20
- {{ posts.list_title | default: "Posts" }}
21
- </h2> <!-- #post-listing-heading -->
22
- </header> <!-- #post-listing-header -->
23
- <ul class="post-list">
24
- {% for post in posts %}
25
- <li class="post-item">
26
- <span class="post-meta">{{ post.date | date: date_format }}</span>
27
- <h3>
28
- <a class="post-link" href="{{ post.url | relative_url }}">
29
- {{ post.title | escape }}
30
- </a>
31
- </h3>
32
- {%- if site.show_excerpts -%}
33
- {{ post.excerpt }}
34
- {% endif %}
35
- </li> <!-- .post-item -->
36
- {% endfor %}
37
- </ul> <!-- .post-list -->
38
- </section> <!-- #post-listing -->
39
- {%- endif -%}
9
+ {%- include post-listing.html -%}
data/_layouts/page.html CHANGED
@@ -4,32 +4,49 @@ layout: default
4
4
 
5
5
  <section id="content">
6
6
  <header id="page-header">
7
- {% if page.title %}
8
- <h2 id="page-title">
9
- {{ page.title }}
10
- </h2> <!-- #page-title -->
11
- {% endif %}
12
-
13
- {% if page.subtitle %}
14
- <p id="page-subtitle">
15
- {{ page.subtitle }}
16
- </p> <!-- #page-subtitle -->
17
- {% endif %}
18
-
19
- {% if page.author %}
20
- <p id="page-author">
21
- {{ page.author }}
22
- </p> <!-- #page-author -->
23
- {% endif %}
24
-
25
- {% if page.date %}
26
- <p id="page-date">
27
- {{ page.date }}
28
- </p> <!-- #page-date -->
29
- {% endif %}
7
+
8
+ {%- if page.title -%}
9
+
10
+ <h2 id="page-title">
11
+
12
+ {{- page.title -}}
13
+
14
+ </h2> <!-- #page-title -->
15
+
16
+ {%- endif -%}
17
+
18
+ {%- if page.subtitle -%}
19
+
20
+ <p id="page-subtitle">
21
+
22
+ {{- page.subtitle -}}
23
+
24
+ </p> <!-- #page-subtitle -->
25
+
26
+ {%- endif -%}
27
+
28
+ {%- if page.author -%}
29
+
30
+ <p id="page-author">
31
+
32
+ {{- page.author -}}
33
+
34
+ </p> <!-- #page-author -->
35
+
36
+ {%- endif -%}
37
+
38
+ {%- if page.date -%}
39
+
40
+ <p id="page-date">
41
+
42
+ {{- page.date -}}
43
+
44
+ </p> <!-- #page-date -->
45
+
46
+ {%- endif -%}
47
+
30
48
  </header>
31
49
 
32
- <article>
33
- {{ content }}
34
- </article>
50
+ {{- content -}}
51
+
35
52
  </section> <!-- #content -->
data/_layouts/post.html CHANGED
@@ -2,36 +2,55 @@
2
2
  layout: default
3
3
  ---
4
4
 
5
- {% assign date_format = site.date_format %}
5
+ {%- assign date_format = site.date_format -%}
6
6
 
7
7
  <section id="content">
8
8
  <header id="page-header">
9
- {% if page.title %}
10
- <h2 id="page-title">
11
- {{ page.title }}
12
- </h2> <!-- #page-title -->
13
- {% endif %}
14
-
15
- {% if page.subtitle %}
16
- <p id="page-subtitle">
17
- {{ page.subtitle }}
18
- </p> <!-- #page-subtitle -->
19
- {% endif %}
20
-
21
- {% if page.author %}
22
- <p id="page-author">
23
- {{ page.author }}
24
- </p> <!-- #page-author -->
25
- {% endif %}
26
-
27
- {% if page.date %}
28
- <p id="page-date">
29
- {{ page.date | date: date_format }}
30
- </p> <!-- #page-date -->
31
- {% endif %}
9
+
10
+ {%- if page.title -%}
11
+
12
+ <h2 id="page-title">
13
+
14
+ {{- page.title -}}
15
+
16
+ </h2> <!-- #page-title -->
17
+
18
+ {%- endif -%}
19
+
20
+ {%- if page.subtitle -%}
21
+
22
+ <p id="page-subtitle">
23
+
24
+ {{- page.subtitle -}}
25
+
26
+ </p> <!-- #page-subtitle -->
27
+
28
+ {%- endif -%}
29
+
30
+ {%- if page.author -%}
31
+
32
+ <p id="page-author">
33
+
34
+ {{- page.author -}}
35
+
36
+ </p> <!-- #page-author -->
37
+
38
+ {%- endif -%}
39
+
40
+ {%- if page.date -%}
41
+
42
+ <p id="page-date">
43
+
44
+ {{- page.date | date: date_format -}}
45
+
46
+ </p> <!-- #page-date -->
47
+
48
+ {%- endif -%}
49
+
50
+ {%- include series.html -%}
51
+
32
52
  </header> <!-- #page-header -->
33
53
 
34
- <article class="content">
35
- {{ content }}
36
- </article>
54
+ {{- content -}}
55
+
37
56
  </section>
@@ -14,3 +14,8 @@ $text-grey-color: #111111;
14
14
  $menu-background-color: $ubuntu-orange-color !default;
15
15
  $menu-text-color: $white-color !default;
16
16
  $menu-separator-color: $warm-grey-color !default;
17
+
18
+
19
+ // Default Colors
20
+ $primary-text-color: $black-color !default;
21
+ $secondary-text-color: $warm-grey-color !default;
@@ -0,0 +1,3 @@
1
+ .list-style-none {
2
+ list-style: none;;
3
+ }
@@ -1,5 +1,6 @@
1
1
  @import "base/all";
2
2
 
3
+ @import "components/list-style-none";
3
4
  @import "layout/justified-p";
4
5
 
5
6
  #layout {
@@ -13,4 +14,10 @@
13
14
  right: auto;
14
15
  }
15
16
  }
17
+
18
+ .post-excerpt {
19
+ p {
20
+ margin: 0;
21
+ }
22
+ }
16
23
  }
@@ -1 +1 @@
1
- @import "normalize.css/normalize"
1
+ @import "../../node_modules/normalize.css/normalize"
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  ---
3
3
 
4
- @import "partials/base";
4
+ @import "themes/simpleton";
@@ -0,0 +1,175 @@
1
+ # Changes to normalize.css
2
+
3
+ ### 8.0.1 (November 4, 2018)
4
+
5
+ * Fix regression in IE rendering of `main` element.
6
+
7
+ ### 8.0.0 (February 2, 2018)
8
+
9
+ * Remove support for older browsers Android 4, lte IE 9, lte Safari 7.
10
+ * Don't remove search input cancel button in Chrome/Safari.
11
+ * Form inputs inherit `font-family`.
12
+ * Fix text decoration in Safari 8+.
13
+
14
+ ### 7.0.0 (May 2, 2017)
15
+
16
+ * Revert changes in `body` and form elements styles introduced by v6
17
+
18
+ ### 6.0.0 (March 26, 2017)
19
+
20
+ * Remove all opinionated rules
21
+ * Correct document heading comment
22
+ * Update `abbr[title]` support
23
+
24
+ ### 5.0.0 (October 3, 2016)
25
+
26
+ * Add normalized sections not already present from
27
+ https://html.spec.whatwg.org/multipage/.
28
+ * Move unsorted rules into their respective sections.
29
+ * Update the `summary` style in all browsers.
30
+ * Remove `::placeholder` styles due to a bug in Edge.
31
+ * More explicitly define font resets on form controls.
32
+ * Remove the `optgroup` normalization needed by the previous font reset.
33
+ * Update text-size-adjust documentation
 for IE on Windows Phone
34
+ * Update OS X reference to macOS
35
+ * Update the semver strategy.
36
+
37
+ ### 4.2.0 (June 30, 2016)
38
+
39
+ * Correct the `line-height` in all browsers.
40
+ * Restore `optgroup` font inheritance.
41
+ * Update normalize.css heading.
42
+
43
+ ### 4.1.1 (April 12, 2016)
44
+
45
+ * Update normalize.css heading.
46
+
47
+ ### 4.1.0 (April 11, 2016)
48
+
49
+ * Normalize placeholders in Chrome, Edge, and Safari.
50
+ * Normalize `text-decoration-skip` property in Safari.
51
+ * Normalize file select buttons.
52
+ * Normalize search input outlines in Safari.
53
+ * Limit Firefox focus normalizations to buttons.
54
+ * Restore `main` to package.json.
55
+ * Restore proper overflow to certain `select` elements.
56
+ * Remove opinionated cursor styles on buttons.
57
+ * Update stylelint configuration.
58
+ * Update tests.
59
+
60
+ ### 4.0.0 (March 19, 2016)
61
+
62
+ * Add the correct font weight for `b` and `strong` in Chrome, Edge, and Safari.
63
+ * Correct inconsistent `overflow` for `hr` in Edge and IE.
64
+ * Correct inconsistent `box-sizing` for `hr` in Firefox.
65
+ * Correct inconsistent `text-decoration` and `border-bottom` for `abbr[title]`
66
+ in Chrome, Edge, Firefox IE, Opera, and Safari.
67
+ * Correct inheritance and scaling of `font-size` for preformatted text.
68
+ * Correct `legend` text wrapping not present in Edge and IE.
69
+ * Remove unnecessary normalization of `line-height` for `input`.
70
+ * Remove unnecessary normalization of `color` for form controls.
71
+ * Remove unnecessary `box-sizing` for `input[type="search"]` in Chrome, Edge,
72
+ Firefox, IE, and Safari.
73
+ * Remove opinionated table resets.
74
+ * Remove opinionated `pre` overflow.
75
+ * Remove selector weight from some input selectors.
76
+ * Update normalization of `border-style` for `img`.
77
+ * Update normalization of `color` inheritance for `legend`.
78
+ * Update normalization of `background-color` for `mark`.
79
+ * Update normalization of `outline` for `:-moz-focusring` removed by a previous
80
+ normalization in Firefox.
81
+ * Update opinionated style of `outline-width` for `a:active` and `a:hover`.
82
+ * Update comments to identify opinionated styles.
83
+ * Update comments to specify browser/versions affected by all changes.
84
+ * Update comments to use one voice.
85
+
86
+ ---
87
+
88
+ ### 3.0.3 (March 30, 2015)
89
+
90
+ * Remove unnecessary vendor prefixes.
91
+ * Add `main` property.
92
+
93
+ ### 3.0.2 (October 4, 2014)
94
+
95
+ * Only alter `background-color` of links in IE 10.
96
+ * Add `menu` element to HTML5 display definitions.
97
+
98
+ ### 3.0.1 (March 27, 2014)
99
+
100
+ * Add package.json for npm support.
101
+
102
+ ### 3.0.0 (January 28, 2014)
103
+
104
+ ### 3.0.0-rc.1 (January 26, 2014)
105
+
106
+ * Explicit tests for each normalization.
107
+ * Fix i18n for `q` element.
108
+ * Fix `pre` text formatting and overflow.
109
+ * Fix vertical alignment of `progress`.
110
+ * Address `button` overflow in IE 8/9/10.
111
+ * Revert `textarea` alignment modification.
112
+ * Fix number input button cursor in Chrome on OS X.
113
+ * Remove `a:focus` outline normalization.
114
+ * Fix `figure` margin normalization.
115
+ * Normalize `optgroup`.
116
+ * Remove default table cell padding.
117
+ * Set correct display for `progress` in IE 8/9.
118
+ * Fix `font` and `color` inheritance for forms.
119
+
120
+ ---
121
+
122
+ ### 2.1.3 (August 26, 2013)
123
+
124
+ * Fix component.json.
125
+ * Remove the gray background color from active links in IE 10.
126
+
127
+ ### 2.1.2 (May 11, 2013)
128
+
129
+ * Revert root `color` and `background` normalizations.
130
+
131
+ ### 2.1.1 (April 8, 2013)
132
+
133
+ * Normalize root `color` and `background` to counter the effects of system
134
+ color schemes.
135
+
136
+ ### 2.1.0 (January 21, 2013)
137
+
138
+ * Normalize `text-transform` for `button` and `select`.
139
+ * Normalize `h1` margin when within HTML5 sectioning elements.
140
+ * Normalize `hr` element.
141
+ * Remove unnecessary `pre` styles.
142
+ * Add `main` element to HTML5 display definitions.
143
+ * Fix cursor style for disabled button `input`.
144
+
145
+ ### 2.0.1 (August 20, 2012)
146
+
147
+ * Remove stray IE 6/7 `inline-block` hack from HTML5 display settings.
148
+
149
+ ### 2.0.0 (August 19, 2012)
150
+
151
+ * Remove legacy browser form normalizations.
152
+ * Remove all list normalizations.
153
+ * Add `quotes` normalizations.
154
+ * Remove all heading normalizations except `h1` font size.
155
+ * Form elements automatically inherit `font-family` from ancestor.
156
+ * Drop support for IE 6/7, Firefox < 4, and Safari < 5.
157
+
158
+ ---
159
+
160
+ ### 1.0.1 (August 19, 2012)
161
+
162
+ * Adjust `small` font size normalization.
163
+
164
+ ### 1.0.0 (August 14, 2012)
165
+
166
+ (Only the notable changes since public release)
167
+
168
+ * Add MIT License.
169
+ * Hide `audio` elements without controls in iOS 5.
170
+ * Normalize heading margins and font size.
171
+ * Move font-family normalization from `body` to `html`.
172
+ * Remove scrollbar normalization.
173
+ * Remove excess padding from checkbox and radio inputs in IE 7.
174
+ * Add IE9 correction for SVG overflow.
175
+ * Add fix for legend not inheriting color in IE 6/7/8/9.
@@ -0,0 +1,21 @@
1
+ # The MIT License (MIT)
2
+
3
+ Copyright © Nicolas Gallagher and Jonathan Neal
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9
+ of the Software, and to permit persons to whom the Software is furnished to do
10
+ so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ 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 THE
21
+ SOFTWARE.
@@ -0,0 +1,102 @@
1
+ # normalize.css
2
+
3
+ <a href="https://github.com/necolas/normalize.css"><img
4
+ src="https://necolas.github.io/normalize.css/logo.svg" alt="Normalize Logo"
5
+ width="80" height="80" align="right"></a>
6
+
7
+ > A modern alternative to CSS resets
8
+
9
+ [![npm][npm-image]][npm-url] [![license][license-image]][license-url]
10
+ [![changelog][changelog-image]][changelog-url]
11
+ [![gitter][gitter-image]][gitter-url]
12
+
13
+
14
+ **NPM**
15
+
16
+ ```sh
17
+ npm install --save normalize.css
18
+ ```
19
+
20
+ **CDN**
21
+
22
+ See https://yarnpkg.com/en/package/normalize.css
23
+
24
+ **Download**
25
+
26
+ See https://necolas.github.io/normalize.css/latest/normalize.css
27
+
28
+
29
+ ## What does it do?
30
+
31
+ * Preserves useful defaults, unlike many CSS resets.
32
+ * Normalizes styles for a wide range of elements.
33
+ * Corrects bugs and common browser inconsistencies.
34
+ * Improves usability with subtle modifications.
35
+ * Explains what code does using detailed comments.
36
+
37
+
38
+ ## Browser support
39
+
40
+ * Chrome
41
+ * Edge
42
+ * Firefox ESR+
43
+ * Internet Explorer 10+
44
+ * Safari 8+
45
+ * Opera
46
+
47
+
48
+ ## Extended details and known issues
49
+
50
+ Additional detail and explanation of the esoteric parts of normalize.css.
51
+
52
+ #### `pre, code, kbd, samp`
53
+
54
+ The `font-family: monospace, monospace` hack fixes the inheritance and scaling
55
+ of font-size for preformatted text. The duplication of `monospace` is
56
+ intentional. [Source](https://en.wikipedia.org/wiki/User:Davidgothberg/Test59).
57
+
58
+ #### `sub, sup`
59
+
60
+ Normally, using `sub` or `sup` affects the line-box height of text in all
61
+ browsers. [Source](https://gist.github.com/413930).
62
+
63
+ #### `select`
64
+
65
+ By default, Chrome on OS X and Safari on OS X allow very limited styling of
66
+ `select`, unless a border property is set. The default font weight on `optgroup`
67
+ elements cannot safely be changed in Chrome on OSX and Safari on OS X.
68
+
69
+ #### `[type="checkbox"]`
70
+
71
+ It is recommended that you do not style checkbox and radio inputs as Firefox's
72
+ implementation does not respect box-sizing, padding, or width.
73
+
74
+ #### `[type="number"]`
75
+
76
+ Certain font size values applied to number inputs cause the cursor style of the
77
+ decrement button to change from `default` to `text`.
78
+
79
+ #### `[type="search"]`
80
+
81
+ The search input is not fully stylable by default. In Chrome and Safari on
82
+ OSX/iOS you can't control `font`, `padding`, `border`, or `background`. In
83
+ Chrome and Safari on Windows you can't control `border` properly. It will apply
84
+ `border-width` but will only show a border color (which cannot be controlled)
85
+ for the outer 1px of that border. Applying `-webkit-appearance: textfield`
86
+ addresses these issues without removing the benefits of search inputs (e.g.
87
+ showing past searches).
88
+
89
+ ## Contributing
90
+
91
+ Please read the [contribution guidelines](CONTRIBUTING.md) in order to make the
92
+ contribution process easy and effective for everyone involved.
93
+
94
+
95
+ [changelog-image]: https://img.shields.io/badge/changelog-md-blue.svg?style=flat-square
96
+ [changelog-url]: CHANGELOG.md
97
+ [license-image]: https://img.shields.io/npm/l/normalize.css.svg?style=flat-square
98
+ [license-url]: LICENSE.md
99
+ [npm-image]: https://img.shields.io/npm/v/normalize.css.svg?style=flat-square
100
+ [npm-url]: https://www.npmjs.com/package/normalize.css
101
+ [gitter-image]: https://img.shields.io/badge/chat-gitter-blue.svg?style=flat-square
102
+ [gitter-url]: https://gitter.im/necolas/normalize.css
@@ -0,0 +1,349 @@
1
+ /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
2
+
3
+ /* Document
4
+ ========================================================================== */
5
+
6
+ /**
7
+ * 1. Correct the line height in all browsers.
8
+ * 2. Prevent adjustments of font size after orientation changes in iOS.
9
+ */
10
+
11
+ html {
12
+ line-height: 1.15; /* 1 */
13
+ -webkit-text-size-adjust: 100%; /* 2 */
14
+ }
15
+
16
+ /* Sections
17
+ ========================================================================== */
18
+
19
+ /**
20
+ * Remove the margin in all browsers.
21
+ */
22
+
23
+ body {
24
+ margin: 0;
25
+ }
26
+
27
+ /**
28
+ * Render the `main` element consistently in IE.
29
+ */
30
+
31
+ main {
32
+ display: block;
33
+ }
34
+
35
+ /**
36
+ * Correct the font size and margin on `h1` elements within `section` and
37
+ * `article` contexts in Chrome, Firefox, and Safari.
38
+ */
39
+
40
+ h1 {
41
+ font-size: 2em;
42
+ margin: 0.67em 0;
43
+ }
44
+
45
+ /* Grouping content
46
+ ========================================================================== */
47
+
48
+ /**
49
+ * 1. Add the correct box sizing in Firefox.
50
+ * 2. Show the overflow in Edge and IE.
51
+ */
52
+
53
+ hr {
54
+ box-sizing: content-box; /* 1 */
55
+ height: 0; /* 1 */
56
+ overflow: visible; /* 2 */
57
+ }
58
+
59
+ /**
60
+ * 1. Correct the inheritance and scaling of font size in all browsers.
61
+ * 2. Correct the odd `em` font sizing in all browsers.
62
+ */
63
+
64
+ pre {
65
+ font-family: monospace, monospace; /* 1 */
66
+ font-size: 1em; /* 2 */
67
+ }
68
+
69
+ /* Text-level semantics
70
+ ========================================================================== */
71
+
72
+ /**
73
+ * Remove the gray background on active links in IE 10.
74
+ */
75
+
76
+ a {
77
+ background-color: transparent;
78
+ }
79
+
80
+ /**
81
+ * 1. Remove the bottom border in Chrome 57-
82
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
83
+ */
84
+
85
+ abbr[title] {
86
+ border-bottom: none; /* 1 */
87
+ text-decoration: underline; /* 2 */
88
+ text-decoration: underline dotted; /* 2 */
89
+ }
90
+
91
+ /**
92
+ * Add the correct font weight in Chrome, Edge, and Safari.
93
+ */
94
+
95
+ b,
96
+ strong {
97
+ font-weight: bolder;
98
+ }
99
+
100
+ /**
101
+ * 1. Correct the inheritance and scaling of font size in all browsers.
102
+ * 2. Correct the odd `em` font sizing in all browsers.
103
+ */
104
+
105
+ code,
106
+ kbd,
107
+ samp {
108
+ font-family: monospace, monospace; /* 1 */
109
+ font-size: 1em; /* 2 */
110
+ }
111
+
112
+ /**
113
+ * Add the correct font size in all browsers.
114
+ */
115
+
116
+ small {
117
+ font-size: 80%;
118
+ }
119
+
120
+ /**
121
+ * Prevent `sub` and `sup` elements from affecting the line height in
122
+ * all browsers.
123
+ */
124
+
125
+ sub,
126
+ sup {
127
+ font-size: 75%;
128
+ line-height: 0;
129
+ position: relative;
130
+ vertical-align: baseline;
131
+ }
132
+
133
+ sub {
134
+ bottom: -0.25em;
135
+ }
136
+
137
+ sup {
138
+ top: -0.5em;
139
+ }
140
+
141
+ /* Embedded content
142
+ ========================================================================== */
143
+
144
+ /**
145
+ * Remove the border on images inside links in IE 10.
146
+ */
147
+
148
+ img {
149
+ border-style: none;
150
+ }
151
+
152
+ /* Forms
153
+ ========================================================================== */
154
+
155
+ /**
156
+ * 1. Change the font styles in all browsers.
157
+ * 2. Remove the margin in Firefox and Safari.
158
+ */
159
+
160
+ button,
161
+ input,
162
+ optgroup,
163
+ select,
164
+ textarea {
165
+ font-family: inherit; /* 1 */
166
+ font-size: 100%; /* 1 */
167
+ line-height: 1.15; /* 1 */
168
+ margin: 0; /* 2 */
169
+ }
170
+
171
+ /**
172
+ * Show the overflow in IE.
173
+ * 1. Show the overflow in Edge.
174
+ */
175
+
176
+ button,
177
+ input { /* 1 */
178
+ overflow: visible;
179
+ }
180
+
181
+ /**
182
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
183
+ * 1. Remove the inheritance of text transform in Firefox.
184
+ */
185
+
186
+ button,
187
+ select { /* 1 */
188
+ text-transform: none;
189
+ }
190
+
191
+ /**
192
+ * Correct the inability to style clickable types in iOS and Safari.
193
+ */
194
+
195
+ button,
196
+ [type="button"],
197
+ [type="reset"],
198
+ [type="submit"] {
199
+ -webkit-appearance: button;
200
+ }
201
+
202
+ /**
203
+ * Remove the inner border and padding in Firefox.
204
+ */
205
+
206
+ button::-moz-focus-inner,
207
+ [type="button"]::-moz-focus-inner,
208
+ [type="reset"]::-moz-focus-inner,
209
+ [type="submit"]::-moz-focus-inner {
210
+ border-style: none;
211
+ padding: 0;
212
+ }
213
+
214
+ /**
215
+ * Restore the focus styles unset by the previous rule.
216
+ */
217
+
218
+ button:-moz-focusring,
219
+ [type="button"]:-moz-focusring,
220
+ [type="reset"]:-moz-focusring,
221
+ [type="submit"]:-moz-focusring {
222
+ outline: 1px dotted ButtonText;
223
+ }
224
+
225
+ /**
226
+ * Correct the padding in Firefox.
227
+ */
228
+
229
+ fieldset {
230
+ padding: 0.35em 0.75em 0.625em;
231
+ }
232
+
233
+ /**
234
+ * 1. Correct the text wrapping in Edge and IE.
235
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
236
+ * 3. Remove the padding so developers are not caught out when they zero out
237
+ * `fieldset` elements in all browsers.
238
+ */
239
+
240
+ legend {
241
+ box-sizing: border-box; /* 1 */
242
+ color: inherit; /* 2 */
243
+ display: table; /* 1 */
244
+ max-width: 100%; /* 1 */
245
+ padding: 0; /* 3 */
246
+ white-space: normal; /* 1 */
247
+ }
248
+
249
+ /**
250
+ * Add the correct vertical alignment in Chrome, Firefox, and Opera.
251
+ */
252
+
253
+ progress {
254
+ vertical-align: baseline;
255
+ }
256
+
257
+ /**
258
+ * Remove the default vertical scrollbar in IE 10+.
259
+ */
260
+
261
+ textarea {
262
+ overflow: auto;
263
+ }
264
+
265
+ /**
266
+ * 1. Add the correct box sizing in IE 10.
267
+ * 2. Remove the padding in IE 10.
268
+ */
269
+
270
+ [type="checkbox"],
271
+ [type="radio"] {
272
+ box-sizing: border-box; /* 1 */
273
+ padding: 0; /* 2 */
274
+ }
275
+
276
+ /**
277
+ * Correct the cursor style of increment and decrement buttons in Chrome.
278
+ */
279
+
280
+ [type="number"]::-webkit-inner-spin-button,
281
+ [type="number"]::-webkit-outer-spin-button {
282
+ height: auto;
283
+ }
284
+
285
+ /**
286
+ * 1. Correct the odd appearance in Chrome and Safari.
287
+ * 2. Correct the outline style in Safari.
288
+ */
289
+
290
+ [type="search"] {
291
+ -webkit-appearance: textfield; /* 1 */
292
+ outline-offset: -2px; /* 2 */
293
+ }
294
+
295
+ /**
296
+ * Remove the inner padding in Chrome and Safari on macOS.
297
+ */
298
+
299
+ [type="search"]::-webkit-search-decoration {
300
+ -webkit-appearance: none;
301
+ }
302
+
303
+ /**
304
+ * 1. Correct the inability to style clickable types in iOS and Safari.
305
+ * 2. Change font properties to `inherit` in Safari.
306
+ */
307
+
308
+ ::-webkit-file-upload-button {
309
+ -webkit-appearance: button; /* 1 */
310
+ font: inherit; /* 2 */
311
+ }
312
+
313
+ /* Interactive
314
+ ========================================================================== */
315
+
316
+ /*
317
+ * Add the correct display in Edge, IE 10+, and Firefox.
318
+ */
319
+
320
+ details {
321
+ display: block;
322
+ }
323
+
324
+ /*
325
+ * Add the correct display in all browsers.
326
+ */
327
+
328
+ summary {
329
+ display: list-item;
330
+ }
331
+
332
+ /* Misc
333
+ ========================================================================== */
334
+
335
+ /**
336
+ * Add the correct display in IE 10+.
337
+ */
338
+
339
+ template {
340
+ display: none;
341
+ }
342
+
343
+ /**
344
+ * Add the correct display in IE 10.
345
+ */
346
+
347
+ [hidden] {
348
+ display: none;
349
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "normalize.css",
3
+ "version": "8.0.1",
4
+ "description": "A modern alternative to CSS resets",
5
+ "main": "normalize.css",
6
+ "style": "normalize.css",
7
+ "files": [
8
+ "LICENSE.md",
9
+ "normalize.css"
10
+ ],
11
+ "repository": "necolas/normalize.css",
12
+ "license": "MIT",
13
+ "bugs": "https://github.com/necolas/normalize.css/issues",
14
+ "homepage": "https://necolas.github.io/normalize.css"
15
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-simpleton
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anatoli Wagner
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-20 00:00:00.000000000 Z
11
+ date: 2021-11-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -38,6 +38,20 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '2.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: webrick
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.0'
41
55
  - !ruby/object:Gem::Dependency
42
56
  name: rake
43
57
  requirement: !ruby/object:Gem::Requirement
@@ -62,10 +76,13 @@ files:
62
76
  - LICENSE.md
63
77
  - README.md
64
78
  - _config.yml
79
+ - _includes/copyright.html
65
80
  - _includes/footer.html
66
81
  - _includes/head.html
67
82
  - _includes/header.html
68
83
  - _includes/menu.html
84
+ - _includes/post-listing.html
85
+ - _includes/series.html
69
86
  - _layouts/default.html
70
87
  - _layouts/home.html
71
88
  - _layouts/page.html
@@ -83,6 +100,7 @@ files:
83
100
  - _sass/base/_normalize.scss
84
101
  - _sass/base/_typography.scss
85
102
  - _sass/components/_hero.scss
103
+ - _sass/components/_list-style-none.scss
86
104
  - _sass/components/_nav.scss
87
105
  - _sass/components/_text-align.scss
88
106
  - _sass/layout/_gallery.scss
@@ -98,6 +116,11 @@ files:
98
116
  - _sass/vendor/_normalize.scss
99
117
  - _sass/vendor/_purecss.scss
100
118
  - assets/css/style.scss
119
+ - node_modules/normalize.css/CHANGELOG.md
120
+ - node_modules/normalize.css/LICENSE.md
121
+ - node_modules/normalize.css/README.md
122
+ - node_modules/normalize.css/normalize.css
123
+ - node_modules/normalize.css/package.json
101
124
  homepage: https://gitlab.com/anwait/jekyll-theme-simpleton
102
125
  licenses:
103
126
  - MIT
@@ -108,16 +131,16 @@ require_paths:
108
131
  - lib
109
132
  required_ruby_version: !ruby/object:Gem::Requirement
110
133
  requirements:
111
- - - ">="
134
+ - - "~>"
112
135
  - !ruby/object:Gem::Version
113
- version: '0'
136
+ version: 3.pre.0
114
137
  required_rubygems_version: !ruby/object:Gem::Requirement
115
138
  requirements:
116
139
  - - ">="
117
140
  - !ruby/object:Gem::Version
118
141
  version: '0'
119
142
  requirements: []
120
- rubygems_version: 3.2.13
143
+ rubygems_version: 3.2.29
121
144
  signing_key:
122
145
  specification_version: 4
123
146
  summary: A very simple jekyll theme with almost no css.