minimal-categorized 0.0.6 → 0.0.11

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: 2ad0357f897f7af62d7ce176ea669d9b708c7276b12d90629ffe820259d4739c
4
- data.tar.gz: fcbecfbde0dd45a0188edd7ecaaa81ae9a576280c1c2b4a8be0712bf4bd43c97
3
+ metadata.gz: 60b00053fc68dba704da894303403887a302cac570b27c992a6c348a2369e16c
4
+ data.tar.gz: 57d20f961c3b1b8be197f9418774c17d09637ef607c50949bacfa8c9171268ff
5
5
  SHA512:
6
- metadata.gz: 0d8e5d4234b5b30f8ea378f44cc53dae41c865794fb20f19161bbc551e840e53b9aad25108463c18b365ffe42d3ed830a1869915521a3494355646ba7897da89
7
- data.tar.gz: 33615ee449abe555e05917ef201daa4b7adb6aa60d6fd919bf72632d3bb40a9d10fcc25f816e69e569182f72ed6ffd1fe030ffa6a4119e6dd95256162d80d701
6
+ metadata.gz: 85e3a1b2a3fd308725e66f040b07533badd0769b8aa615d4be58a813be42b2d9a801b2f9618cbb07b07a802853f4317a65f51562918a262c255067ef2c99b0e3
7
+ data.tar.gz: 2a07fc4f37f0df2101937592f1fedda33b59ea92d49bf60015bfbe7c706e16ed0b37398906d7b7f09bd551534c78042bf0589447fc771572c6044c67087cf6d6
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>
@@ -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,48 @@
1
+ .cookie-container {
2
+ position: fixed;
3
+ padding: 20px 15px;
4
+ z-index: $pop-ups-z-1;
5
+ background-image: radial-gradient(farthest-corner at 25% 0, $primary, $p_dark);
6
+ box-shadow: 0 0 6px 0 $p_dark;
7
+ text-align: center;
8
+ opacity: 0.95;
9
+ -webkit-transition: opacity 800ms, visibility 800ms;
10
+ transition: opacity 800ms, visibility 800ms;
11
+ bottom: 30px;
12
+ left: 40px;
13
+ max-width: 300px;
14
+ border-radius: 3px;
15
+ border: 3px solid $p_dark;
16
+
17
+ p {
18
+ color: $p_text;
19
+ line-height: 1.6em;
20
+ margin-bottom: 10px;
21
+ }
22
+ &.hidden {
23
+ opacity: 0;
24
+ visibility: hidden;
25
+ }
26
+ button {
27
+ line-height: 1.4;
28
+ font-weight: 700;
29
+ font-family: Titillium Web,sans-serif;
30
+ display: inline-block;
31
+ padding: 10px 20px;
32
+ background: $p_text;
33
+ color: $primary;
34
+ border: 3px solid $p_light;
35
+ border-radius: 3px;
36
+ text-decoration: none;
37
+ }
38
+ @include mobile {
39
+ bottom: 0;
40
+ left: 0;
41
+ width: 100%;
42
+ max-width: 100%;
43
+ padding: 12px 10px;
44
+ border-left: 0;
45
+ border-right: 0;
46
+ border-bottom: 0;
47
+ }
48
+ }
@@ -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
  }
@@ -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 {
@@ -3,9 +3,11 @@ $desktop-width: 1024px;
3
3
  $menu-size: 200px;
4
4
  $minimal-menu-size: 50px;
5
5
  $gap: 30px;
6
+ $pop-ups-z-1: 100;
6
7
 
7
8
  $content-width-desktop: calc(100% - #{$menu-size});
8
9
  $content-width-desktop-minimal-menu: calc(100% - #{$minimal-menu-size});
10
+
9
11
  @mixin tablet {
10
12
  @media only screen and (min-width: #{$tablet-width}) and (max-width: #{$desktop-width - 1px}) {
11
13
  @content;
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.6
4
+ version: 0.0.11
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