minimal-categorized 0.0.5 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6415a38becb2fecea685e504e1151de202d319b0318eaf7a944974883d0a16ac
4
- data.tar.gz: 713e4a72dd644f0acdcbc64babe51311edcdeb664c28ee13dd903792d515e56c
3
+ metadata.gz: 156570bfb4f581a3e86595e953d9ca2590a38090df109e508def1672dd846643
4
+ data.tar.gz: 1a447df98586bb3a1163f732db414be39672f5b679b4b37e9bccbc6b2b80abb7
5
5
  SHA512:
6
- metadata.gz: 15ef67e272a34ce4b96dfca2bd52c8d9c878d1b17e39e3c0bac59642cf5f28d02c4d102b6da0ff36adadbf17ff04a9cf3882e3f14482812d501a4ef16b135e38
7
- data.tar.gz: 48be04e4484a1354600841479a17a0daf6e7d1d478527ceee12ddfd5bae39a3df6dd9dbb3916cde7ffce169d3d184f46d60f5a0eccd59a35f40c8f4bde4dfffa
6
+ metadata.gz: e92a5f75922ba7ad82fcee985c0de87601b2e36879938f63b193e5bacf10266bf9299eae364fae51237b6d35438a8a204e9d7a0b949285a75358ed1ff6336a5b
7
+ data.tar.gz: ff0ee93d37f6f377f9435e554077a27151f7cdd7670212b95700ce92e8526571ae3eafb8b0eedac90622ce4552694f2dadf8b2b3102b7adb6fb55bfad8384f88
data/README.md CHANGED
@@ -55,6 +55,10 @@ Structure of `_data/menu.yml`:
55
55
  * faicon: FavIcon to be displayed in menu
56
56
  * url: URL for href
57
57
  * target: target value of \<a> tag
58
+ * cookies: customize information about site cookies
59
+ * enabled: determine if should show cookies pop-up
60
+ * message: text on cookie pop-up
61
+ * agreeButtonText: text on agree button
58
62
 
59
63
  Structure of `_data/metaData.yml`:
60
64
  author: Site Author name
@@ -13,15 +13,21 @@
13
13
  # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
14
14
  # You can create any custom variable you would like, and they will be accessible
15
15
  # in the templates via {{ site.myvariable }}.
16
- title: Site title
16
+ title: minimal-categorized
17
+ tagline: A site showing the usage of Jekyll custom theme
17
18
  email: email@example.com
18
19
  description: >- # this means to ignore newlines until "baseurl:"
19
- Write an awesome description for your new site here. You can edit this
20
- line in _config.yml. It will appear in your document head meta (for
21
- Google search results) and in your feed.xml site description.
20
+ This website was created as a demonstration for Jekyll custom theme
21
+ named minimal-categorized. Its main feature is to aggregate posts into
22
+ categories, witch are easily distinguishable
22
23
  baseurl: "/minimal-categorized" # the subpath of your site, e.g. /blog
23
- url: "" # the base hostname & protocol for your site, e.g. http://example.com
24
-
24
+ url: "https://itsmeaga1n.github.io" # the base hostname & protocol for your site, e.g. http://example.com
25
+ author: itsmeaga1n
26
+ twitter:
27
+ username: itsmeaga1n
28
+ card: summary
29
+ plugins:
30
+ - jekyll-seo-tag
25
31
 
26
32
  # Build settings
27
33
  markdown: kramdown
@@ -0,0 +1,3 @@
1
+ custom-css:
2
+
3
+ custom-js:
@@ -1,2 +1,6 @@
1
1
  author: Site Author
2
- avatar_url: assets/img/avatar.png
2
+ avatar_url: assets/img/avatar.png
3
+ cookies:
4
+ enabled: True
5
+ message: This site might be using cookies! Customize your message or disable cookies in metaData.yml!
6
+ agreeButtonText: Agree
@@ -1,5 +1,6 @@
1
1
  <meta charset="utf-8">
2
2
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
3
- <title>{{ page.title }}</title>
4
3
  <link rel="stylesheet" href="{{ '/assets/styles/styles.css' | relative_url }}">
5
- <script src="https://kit.fontawesome.com/79c31398dc.js" crossorigin="anonymous"></script>
4
+ <script src="https://kit.fontawesome.com/79c31398dc.js" crossorigin="anonymous"></script>
5
+ {% include customizations.html %}
6
+ {% seo %}
@@ -0,0 +1,29 @@
1
+ (function() {
2
+ const consentPropName = "cookies_consent";
3
+ const storageType = localStorage;
4
+
5
+ shouldShowCookieConsent = () => !storageType.getItem(consentPropName);
6
+ acceptCookieConsent = () => storageType.setItem(consentPropName, true);
7
+ window.addEventListener("load", () => {
8
+ if(!shouldShowCookieConsent()) {
9
+ return;
10
+ }
11
+ const cookieContainer = document.createElement("div");
12
+ cookieContainer.classList.add("hidden");
13
+ const cookieParagraph = document.createElement("p");
14
+ const cookieContent = document.createTextNode("{{ site.data.metaData.cookies.message }}");
15
+ const cookieAgreeButton = document.createElement("button");
16
+ const cookieButtonContent = document.createTextNode("{{ site.data.metaData.cookies.agreeButtonText }}");
17
+ cookieAgreeButton.appendChild(cookieButtonContent);
18
+ cookieAgreeButton.onclick = () => {
19
+ acceptCookieConsent();
20
+ cookieContainer.classList.add("hidden");
21
+ window.setTimeout(cookieContainer.remove.bind(cookieContainer), 1000);
22
+ }
23
+ cookieParagraph.append(cookieContent);
24
+ cookieContainer.append(cookieParagraph, cookieAgreeButton);
25
+ cookieContainer.classList.add("cookie-container")
26
+ document.body.appendChild(cookieContainer);
27
+ window.setTimeout(() => cookieContainer.classList.remove("hidden"));
28
+ });
29
+ })();
@@ -0,0 +1,15 @@
1
+ {% for javascript in page.custom-js %}
2
+ <script src="{{ javascript }}"></script>
3
+ {% endfor %}
4
+
5
+ {% for javascript in site.data.customs.custom-js %}
6
+ <script src="{{ javascript }}"></script>
7
+ {% endfor %}
8
+
9
+ {% for css in page.custom-css %}
10
+ <link href="{{ css }}" rel="stylesheet">
11
+ {% endfor %}
12
+
13
+ {% for css in site.data.customs.custom-css %}
14
+ <link href="{{ css }}" rel="stylesheet">
15
+ {% endfor %}
@@ -27,5 +27,5 @@
27
27
 
28
28
  attachEvents(category1, category2);
29
29
  attachEvents(category2, category1);
30
- })
31
- })()
30
+ });
31
+ })();
@@ -1,6 +1,11 @@
1
1
  <!doctype html>
2
2
  <html>
3
3
  <head>
4
+ {% if site.data.metaData.cookies.enabled %}
5
+ <script>
6
+ {% include cookies.js %}
7
+ </script>
8
+ {% endif %}
4
9
  {% include common-head.html %}
5
10
  </head>
6
11
  {% if site.data.menu.minimal_menu %}
@@ -6,7 +6,7 @@
6
6
  {% include home.js %}
7
7
  </script>
8
8
  </head>
9
- {% if site.data.menu.minimal_menu %}
9
+ {% if site.data.menu.minimal_menu and site.data.menu.show_menu_on_category_select %}
10
10
  <body class="is-minimal-menu" >
11
11
  {% else %}
12
12
  <body>
@@ -2,9 +2,11 @@
2
2
  layout: default
3
3
  ---
4
4
  <div class="post">
5
+ {% if page.image %}
5
6
  <figure>
6
7
  <img src="{{ page.image | relative_url }}"/>
7
8
  </figure>
9
+ {% endif %}
8
10
  <div class="content-container {{ page.category }}">
9
11
  <h1>{{ page.title }}</h1>
10
12
  {{content}}
@@ -19,7 +19,7 @@
19
19
  font-weight: 700;
20
20
  padding-left: 18px;
21
21
  font-style: italic;
22
- margin-top: -0.8em;
22
+ margin-top: -0.6em;
23
23
  color: rgba(0, 0, 0, 0.4);
24
24
  font-size: 0.9em;
25
25
  }
@@ -0,0 +1,39 @@
1
+ .cookie-container {
2
+ position: fixed;
3
+ right: 0;
4
+ padding: 20px 15px;
5
+ z-index: 100;
6
+ background-image: radial-gradient(farthest-corner at 25% 0, $primary, $p_dark);
7
+ box-shadow: 0 0 6px 0 $p_dark;
8
+ text-align: center;
9
+ opacity: 0.95;
10
+ -webkit-transition: opacity 800ms, visibility 800ms;
11
+ transition: opacity 800ms, visibility 800ms;
12
+ bottom: 30px;
13
+ left: 30px;
14
+ max-width: 300px;
15
+ border-radius: 3px;
16
+ border: 3px solid $p_dark;
17
+
18
+ p {
19
+ color: $p_text;
20
+ line-height: 1.6em;
21
+ margin-bottom: 10px;
22
+ }
23
+ &.hidden {
24
+ opacity: 0;
25
+ visibility: hidden;
26
+ }
27
+ button {
28
+ line-height: 1.5;
29
+ font-weight: 700;
30
+ font-family: Titillium Web,sans-serif;
31
+ display: inline-block;
32
+ padding: 15px 30px;
33
+ background: $p_text;
34
+ color: $primary;
35
+ border: 3px solid $p_light;
36
+ border-radius: 3px;
37
+ text-decoration: none;
38
+ }
39
+ }
@@ -6,12 +6,13 @@ h1 {
6
6
  text-align: center;
7
7
  font-size: 2.5em;
8
8
  letter-spacing: -1px;
9
- margin: 1em 50px 1em;
9
+ padding: 1em 50px 1em;
10
10
  }
11
11
 
12
- h2 {
12
+ h2, h2 a {
13
13
  font-weight: 700;
14
- font-size: 1.5em;
14
+ font-size: 1.4em;
15
+ line-height: 1.4em;
15
16
  color: $secondary;
16
17
  }
17
18
 
@@ -33,9 +34,13 @@ main {
33
34
  width: 90%;
34
35
  padding: 0px 18px 24px;
35
36
  flex-grow: 1;
37
+ position: relative;
36
38
 
37
39
  .content-separator {
38
40
  margin: $gap auto;
41
+ &:last-child {
42
+ margin: $gap auto 0 auto;
43
+ }
39
44
  }
40
45
  }
41
46
  }
@@ -44,7 +49,7 @@ a {
44
49
  color: inherit;
45
50
  }
46
51
 
47
- a, p {
52
+ a, p, li {
48
53
  font-size: 1.1em;
49
54
  }
50
55
 
@@ -53,4 +53,12 @@
53
53
  }
54
54
  }
55
55
  }
56
+
57
+ @include mobile {
58
+ flex-direction: column;
59
+ a {
60
+ height: 50%;
61
+ width: 100%;
62
+ }
63
+ }
56
64
  }
@@ -4,4 +4,5 @@
4
4
  @import './home';
5
5
  @import './category-aggregator';
6
6
  @import './profile';
7
- @import "./post";
7
+ @import './post';
8
+ @import './cookies';
@@ -16,6 +16,7 @@ main {
16
16
  top: $menu-size;
17
17
  left: 0;
18
18
  width: 100%;
19
+ height: calc(100% - #{$menu-size});
19
20
  }
20
21
  &.no-menu {
21
22
  width: 100%;
@@ -43,6 +44,7 @@ footer {
43
44
  top: $minimal-menu-size;
44
45
  left: 0;
45
46
  width: 100%;
47
+ height: calc(100% - #{$minimal-menu-size});
46
48
  }
47
49
  }
48
50
  }
@@ -76,7 +76,7 @@
76
76
 
77
77
  h1 {
78
78
  font-size: 2em;
79
- margin: 0.5em;
79
+ padding: 0.5em;
80
80
  }
81
81
 
82
82
  h2 {
@@ -1,4 +1,5 @@
1
1
  .post {
2
+ font-size: 1.2em;
2
3
  a {
3
4
  text-decoration-line: none;
4
5
  color: $secondary;
@@ -7,21 +8,34 @@
7
8
  font-weight: 500;
8
9
  }
9
10
  }
10
- code {
11
- &.language-plaintext {
12
- border-radius: 3px;
13
- padding: 1px 3px;
14
- background-color:rgb(228, 230, 232);
15
- }
16
-
11
+ .language-plaintext, .language-shell, .language-html {
12
+ border-radius: 3px;
13
+ padding: 1px 3px;
14
+ background-color:rgb(228, 230, 232);
17
15
  }
18
16
  figure {
19
17
  margin: 0;
18
+ width: 100%;
20
19
  img {
21
20
  width: 100%;
22
21
  background-repeat: no-repeat;
23
22
  background-size: cover;
24
23
  }
25
24
  }
26
-
25
+ p, ul {
26
+ margin-bottom: $gap * .5;
27
+ margin-top: $gap * .5;
28
+ }
29
+ ul {
30
+ display: block;
31
+ list-style-type: disc;
32
+ margin-block-start: 1em;
33
+ margin-block-end: 1em;
34
+ margin-inline-start: 0px;
35
+ margin-inline-end: 0px;
36
+ padding-inline-start: 40px;
37
+ }
38
+ li {
39
+ display: list-item;
40
+ }
27
41
  }
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minimal-categorized
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patryk Bieszke
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-01 00:00:00.000000000 Z
11
+ date: 2020-11-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -35,9 +35,12 @@ files:
35
35
  - LICENSE.txt
36
36
  - README.md
37
37
  - _config.yml
38
+ - _data/customs.yml
38
39
  - _data/menu.yml
39
40
  - _data/metaData.yml
40
41
  - _includes/common-head.html
42
+ - _includes/cookies.js
43
+ - _includes/customizations.html
41
44
  - _includes/footer.html
42
45
  - _includes/home.js
43
46
  - _includes/menu.html
@@ -47,6 +50,7 @@ files:
47
50
  - _layouts/post.html
48
51
  - _sass/minimal-categorized.scss
49
52
  - _sass/styles/_category-aggregator.scss
53
+ - _sass/styles/_cookies.scss
50
54
  - _sass/styles/_defaults.scss
51
55
  - _sass/styles/_home.scss
52
56
  - _sass/styles/_index.scss
@@ -59,6 +63,8 @@ files:
59
63
  - _sass/variables/_layout.scss
60
64
  - _sass/variables/_mixins.scss
61
65
  - assets/img/avatar.png
66
+ - assets/img/category-1.jpg
67
+ - assets/img/category-2.jpg
62
68
  - assets/styles/styles.scss
63
69
  - pages/about.html
64
70
  - pages/category-1.html