minimal-categorized 0.0.13 → 0.0.14

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: e9ecd370164a3292e9f9f243415565b854c51eef66fa001291f5bc1c8d3cbae8
4
- data.tar.gz: e0aecaf432d6887732f2115bdd0e7e1283630a47f5ae94f4652ef0aef841661e
3
+ metadata.gz: 91dcd1021101ae6e6af2c48e027e14225460eca63d23bb44a56d74f9d67f31aa
4
+ data.tar.gz: 1b5bae713c662e65cd3b5d08cc5425e0acaec5ab0a1abcbc6f2b3ef783894573
5
5
  SHA512:
6
- metadata.gz: 808d35f7797f0ea4c3a63b3b886351b6338cff33b83acdcd3c002eba683d900939edbce0ea9cdedb37cc4167c6a3b22bd032a355392e0780f66be353878e6fa4
7
- data.tar.gz: e7060e7731d29217b1453135027af3aadfbbdebb0cb68ac961eb03f3e268ba71c4087c2f5cccffe0a9b91ef1c0f7b9ba8078f4f1602ab090fa8ff441dba8c9c8
6
+ metadata.gz: 553cc24c77e897bbffb09c7e69c7ca98cde3a9657e6626247e49143db97e726e1b8313fedc5e1e016715c55d61515823a4e361777d4980b9c3f9dd3e3e43a8ce
7
+ data.tar.gz: c2a833c592d1faf4cae5ce6d431ff6aa8c7cd296a78fdd37b0662f5f71cedd9800a391f20439c53ec7640d80e8285d170254b23bb368407fc75a31c960e1d5fa
data/README.md CHANGED
@@ -40,7 +40,7 @@ Structure of `_data/menu.yml`:
40
40
  * menu_title: Displayed on menu (only for normal menu)
41
41
  * menu_headline: Displayed in menu (only for normal menu) and in about page
42
42
  * menu_intro: Displayed in menu (only for normal menu) and in about page
43
- * show_menu_on_category_select: Boolean value determining if menu should be visible on category selection page
43
+ * show_menu_on_gate_page: Boolean value determining if menu should be visible on category selection page
44
44
  * minimal_menu: Boolean value determining the style of menu bar
45
45
  * menu_logo: Path to logo displayed on menu (only for normal menu)
46
46
  * menu_pages: a list of items in menu. Each item contains information:
@@ -1,11 +1,17 @@
1
1
  menu_title: Example menu title
2
2
  menu_headline: example menu headline
3
3
  menu_intro: Hi! This is an example of intro that you could write for your jekyll minimal-categorized theme!
4
- show_menu_on_category_select: False
4
+ show_menu_on_gate_page: False
5
5
  minimal_menu: True
6
6
  menu_logo: assets/img/avatar.png
7
7
 
8
8
  menu_pages:
9
+ - title: Home
10
+ url: /
11
+ show_on_home: False
12
+ icon_name: fas fa-home
13
+ category: home
14
+
9
15
  - title: Category 1
10
16
  url: /category-1.html
11
17
  show_on_home: True
@@ -13,6 +19,7 @@ menu_pages:
13
19
  icon_name: fas fa-dice
14
20
  category: category-1
15
21
  tooltip: This is category 1
22
+ description: Category 1 description, which is written in menu.yml file under :description property
16
23
 
17
24
  - title: Category 2
18
25
  url: /category-2.html
@@ -21,8 +28,9 @@ menu_pages:
21
28
  icon_name: fas fa-cogs
22
29
  category: category-2
23
30
  tooltip: This is category 2
31
+ description: Category 2 description, which is written in menu.yml file under :description property
24
32
 
25
- - title: ABOUT
33
+ - title: About
26
34
  url: about.html
27
35
  show_on_home: False
28
36
  icon_name: fas fa-address-card
@@ -1,6 +1,7 @@
1
1
  author: Site Author
2
2
  avatar_url: assets/img/avatar.png
3
- lightTheme: True
3
+ lightTheme: False
4
+ show_menu_logo_on_home_page: True
4
5
  cookies:
5
6
  enabled: True
6
7
  message: This site might be using cookies! Customize your message or disable cookies in metaData.yml!
@@ -0,0 +1,5 @@
1
+ <div class="avatar_container">
2
+ <div class="avatar" >
3
+ <img src="{{ site.data.metaData.avatar_url }}" alt="avatar" onerror="this.style.display='none'">
4
+ </div>
5
+ </div>
File without changes
@@ -0,0 +1,35 @@
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ {% include common-head.html %}
5
+ <script>
6
+ {% include gate.js %}
7
+ </script>
8
+ </head>
9
+ {% if site.data.menu.minimal_menu and site.data.menu.show_menu_on_gate_page %}
10
+ <body class="is-minimal-menu" >
11
+ {% else %}
12
+ <body>
13
+ {% endif %}
14
+ {% if site.data.menu.show_menu_on_gate_page %}
15
+ {% include menu.html %}
16
+ <main class="content-layout">
17
+ {% else %}
18
+ <main class="content-layout no-menu">
19
+ {% endif %}
20
+ <div class="gate">
21
+ {% for menu_item in site.data.menu.menu_pages %}
22
+ {% if menu_item.show_on_home %}
23
+ <a href="{{ menu_item.url | relative_url }}" class="category-container">
24
+ <div class="category" style="background-image: url('{{ menu_item.image_url | relative_url}}')"></div>
25
+ <p>
26
+ {{ menu_item.title }}
27
+ </p>
28
+ </a>
29
+ {% endif %}
30
+ {% endfor %}
31
+ </div>
32
+ </main>
33
+ </body>
34
+ </html>
35
+
@@ -1,35 +1,35 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- {% include common-head.html %}
5
- <script>
6
- {% include home.js %}
7
- </script>
8
- </head>
9
- {% if site.data.menu.minimal_menu and site.data.menu.show_menu_on_category_select %}
10
- <body class="is-minimal-menu" >
11
- {% else %}
12
- <body>
13
- {% endif %}
14
- {% if site.data.menu.show_menu_on_category_select %}
15
- {% include menu.html %}
16
- <main class="content-layout">
17
- {% else %}
18
- <main class="content-layout no-menu">
1
+ ---
2
+ layout: default
3
+ category: home
4
+ ---
5
+ <div class="content-container home">
6
+
7
+ <h1>
8
+ {% if site.data.metaData.show_menu_logo_on_home_page %}
9
+ {% include avatar.html %}
19
10
  {% endif %}
20
- <div class="home">
21
- {% for menu_item in site.data.menu.menu_pages %}
22
- {% if menu_item.show_on_home %}
23
- <a href="{{ menu_item.url | relative_url }}" class="category-container">
24
- <div class="category" style="background-image: url('{{ menu_item.image_url | relative_url}}')"></div>
25
- <p>
26
- {{ menu_item.title }}
27
- </p>
11
+ {{ page.title }}
12
+ </h1>
13
+ <p class="page-summary">{{ page.summary }}</p>
14
+ <div class="category_wrapper">
15
+ {% for menu_item in site.data.menu.menu_pages %}
16
+ {% if menu_item.show_on_home %}
17
+ <div class="category_container">
18
+ <div class="category_image">
19
+ <a href="{{ menu_item.url | relative_url }}">
20
+ <img class="category" src="{{ menu_item.image_url | relative_url}}">
28
21
  </a>
29
- {% endif %}
30
- {% endfor %}
31
- </div>
32
- </main>
33
- </body>
34
- </html>
35
-
22
+ </div>
23
+ <div class="category_description">
24
+ <a href="{{ menu_item.url | relative_url }}">
25
+ <h2> {{ menu_item.title }} </h2>
26
+ </a>
27
+ <p>
28
+ {{ menu_item.description }}
29
+ </p>
30
+ </div>
31
+ </div>
32
+ {% endif %}
33
+ {% endfor %}
34
+ </div>
35
+ </div>
@@ -0,0 +1,16 @@
1
+ .avatar {
2
+ &_container {
3
+ justify-content: center!important;
4
+ display: flex;
5
+ }
6
+ display: block;
7
+ width: $avatar-dim;
8
+ height: $avatar-dim;
9
+ border-radius: 50%;
10
+ border: 2px solid $p_light;
11
+ overflow: hidden;
12
+ img {
13
+ height: $avatar-dim;
14
+ width: $avatar-dim;
15
+ }
16
+ }
@@ -0,0 +1,64 @@
1
+
2
+ .gate {
3
+ flex-grow: 1;
4
+ display: flex;
5
+ flex-direction: row;
6
+ flex-wrap: wrap;
7
+ justify-content: space-between;
8
+ align-items: flex-start;
9
+ background-color: $main-bg-color;
10
+ a {
11
+ display: flex;
12
+ flex: 0 50%;
13
+ height: 100%;
14
+ justify-content: center;
15
+ align-items: center;
16
+ box-sizing: border-box;
17
+ border: 1px solid $base-white;
18
+ transition: .5s ease;
19
+ &:hover {
20
+ .category {
21
+ opacity: 0.25;
22
+ }
23
+ p {
24
+ opacity: 1;
25
+ }
26
+ }
27
+
28
+ .category {
29
+ display: flex;
30
+ flex: 0 100%;
31
+ opacity: 0.7;
32
+ height: 100%;
33
+ background-repeat: no-repeat;
34
+ background-size: cover;
35
+ transition: .5s ease;
36
+ backface-visibility: hidden;
37
+ @include mobile {
38
+ opacity: 0.25;
39
+ }
40
+ }
41
+
42
+ p {
43
+ color: $p_lightest;
44
+ font-size: 42px;
45
+ font-weight: 700;
46
+ transition: .5s ease;
47
+ opacity: 0;
48
+ position: absolute;
49
+ text-align: center;
50
+ text-shadow: $dark 3px 3px 3px;
51
+ @include mobile {
52
+ opacity: 1;
53
+ }
54
+ }
55
+ }
56
+
57
+ @include mobile {
58
+ flex-direction: column;
59
+ a {
60
+ height: 50%;
61
+ width: 100%;
62
+ }
63
+ }
64
+ }
@@ -1,64 +1,115 @@
1
+ $image-dim: 192px;
1
2
 
2
3
  .home {
3
- flex-grow: 1;
4
4
  display: flex;
5
- flex-direction: row;
5
+ flex-direction: column;
6
6
  flex-wrap: wrap;
7
7
  justify-content: space-between;
8
8
  align-items: flex-start;
9
- background-color: $main-bg-color;
10
- a {
9
+ color: $p_text;
10
+ .page-summary {
11
+ flex: 0;
12
+ width: 100%;
13
+ text-align: center;
14
+ }
15
+ h1 {
16
+ flex: 0;
17
+ margin: auto;
11
18
  display: flex;
12
- flex: 0 50%;
13
- height: 100%;
14
- justify-content: center;
15
19
  align-items: center;
16
- box-sizing: border-box;
17
- border: 1px solid $base-white;
18
- transition: .5s ease;
20
+ }
21
+ a {
19
22
  &:hover {
20
- .category {
21
- opacity: 0.25;
22
- }
23
- p {
24
- opacity: 1;
23
+ text-decoration: underline $primary;
24
+ }
25
+ }
26
+ .category {
27
+ &_wrapper {
28
+ margin-top: 2em;
29
+ flex: 1;
30
+ width: 100%;
31
+ display: flex;
32
+ @include mobile {
33
+ flex-direction: column;
34
+ margin-top: 1em;
25
35
  }
26
36
  }
27
-
28
- .category {
37
+ &_container {
29
38
  display: flex;
30
- flex: 0 100%;
31
- opacity: 0.7;
39
+ flex-direction: column;
40
+ flex: 0 50%;
32
41
  height: 100%;
33
- background-repeat: no-repeat;
34
- background-size: cover;
42
+ justify-content: flex-start;
43
+ align-items: center;
44
+ box-sizing: border-box;
35
45
  transition: .5s ease;
36
- backface-visibility: hidden;
46
+ padding-left: 2em;
47
+ padding-right: 2em;
37
48
  @include mobile {
38
- opacity: 0.25;
49
+ padding-left: 0;
50
+ padding-right: 0;
51
+ padding-top: 2em;
52
+ }
53
+ &:first-of-type {
54
+ border-right: 1px solid $base-white;
55
+ @include mobile {
56
+ padding-bottom: 2em;
57
+ padding-top: 0;
58
+ border-right: none;
59
+ border-bottom: 1px solid $base-white;
60
+ }
39
61
  }
40
62
  }
41
-
42
- p {
43
- color: $p_lightest;
44
- font-size: 42px;
45
- font-weight: 700;
46
- transition: .5s ease;
47
- opacity: 0;
48
- position: absolute;
49
- text-align: center;
50
- text-shadow: $dark 3px 3px 3px;
63
+ &_image {
64
+ justify-content: center !important;
65
+ display: flex;
66
+ height: $image-dim * 2;
67
+ align-items: center;
51
68
  @include mobile {
52
- opacity: 1;
69
+ height: $image-dim * 1.1;
70
+ }
71
+ a {
72
+ display: block;
73
+ width: $image-dim;
74
+ height: $image-dim;
75
+ border-radius: 50%;
76
+ border: 2px solid $p_light;
77
+ overflow: hidden;
78
+ transition: .5s ease;
79
+ &:hover {
80
+ height: $image-dim * 1.5;
81
+ width: $image-dim * 1.5;
82
+ }
83
+ }
84
+ img {
85
+ height: $image-dim;
86
+ width: $image-dim;
87
+ object-fit: cover;
88
+ transition: .5s ease;
89
+ opacity: 0.8;
90
+ &:hover {
91
+ height: $image-dim * 1.5;
92
+ width: $image-dim * 1.5;
93
+ }
53
94
  }
54
95
  }
55
- }
96
+ &_description {
97
+ text-align: center;
56
98
 
57
- @include mobile {
58
- flex-direction: column;
59
- a {
60
- height: 50%;
61
- width: 100%;
62
99
  }
100
+ display: flex;
101
+ flex: 0 100%;
102
+ opacity: 0.7;
103
+ height: 100%;
104
+ background-repeat: no-repeat;
105
+ background-size: cover;
106
+ backface-visibility: hidden;
107
+ @include mobile {
108
+ opacity: 0.25;
109
+ }
110
+ }
111
+
112
+ .avatar_container {
113
+ margin-right: 0.5em;
63
114
  }
64
115
  }
@@ -6,4 +6,6 @@
6
6
  @import './profile';
7
7
  @import './post';
8
8
  @import './cookies';
9
- @import './projects-collection.scss';
9
+ @import './projects-collection.scss';
10
+ @import './gate.scss';
11
+ @import './avatar';
@@ -73,6 +73,12 @@
73
73
  left: -2px;
74
74
  top: 0px;
75
75
  box-shadow: $primary 4px 0px 22px;
76
+ @include mobile {
77
+ height: 2px;
78
+ width: 100%;
79
+ top: -2px;
80
+ left: 0;
81
+ }
76
82
  }
77
83
  }
78
84
  @include mobile {
@@ -1,10 +1,13 @@
1
1
  .post {
2
2
  font-size: 1.2em;
3
+ color: black;
3
4
  a {
5
+ transition: all 300ms ease 0s;
6
+ cursor: pointer;
4
7
  text-decoration-line: none;
5
- color: $secondary;
8
+ text-decoration: underline $primary;
6
9
  &:hover {
7
- text-decoration: underline;
10
+ color: $primary;
8
11
  font-weight: 500;
9
12
  }
10
13
  }
@@ -3,24 +3,12 @@ $avatar-dim: 96px;
3
3
  .profile {
4
4
  margin-top: 30px;
5
5
  text-align: center;
6
- .avatar {
7
- justify-content: center!important;
8
- display: flex;
9
- a {
10
- display: block;
11
- width: $avatar-dim;
12
- height: $avatar-dim;
13
- border-radius: 50%;
14
- border: 2px solid $p_light;
15
- overflow: hidden;
16
- }
17
- img {
18
- height: $avatar-dim;
19
- width: $avatar-dim;
20
- }
21
- }
22
6
  p {
23
7
  margin: 6px;
24
8
  line-height: 1.5em;
25
9
  }
10
+ .avatar {
11
+ margin-left: auto;
12
+ margin-right: auto;
13
+ }
26
14
  }
@@ -0,0 +1,25 @@
1
+ $base-white: #fafafa;
2
+ $main-bg-color: #162129;
3
+
4
+ $primary: #4fc2f7;
5
+ $p_light: #81d3fa;
6
+ $p_lighter_less: #81d3fa;
7
+ $p_lighter: #b3e4fc;
8
+ $p_lightest: #e1f5fe;
9
+ $p_dark: #09a7f4;
10
+ $p_darker: #0986d0;
11
+ $p_darkest: #07559a;
12
+
13
+ $dark: #162129;
14
+
15
+ $secondary: #f7844f;
16
+ $s_light: #faa682;
17
+ $s_lighter: #fdc9b3;
18
+ $s_lightest: #fbe8e4;
19
+ $s_dark: #001970;
20
+
21
+ $p_text: #ecf8ff;
22
+ $p_text_dimmed: #5e8ca7;
23
+ $s_text: #ffffff;
24
+
25
+ $post_content_bg_color: #fff;
@@ -0,0 +1,17 @@
1
+ $base-white: #fafafa;
2
+ $main-bg-color: #fafafa;
3
+ $dark: #1c313a;
4
+ $primary: #455a64;
5
+ $p_light: #718792;
6
+ $p_lighter_less: #8fa4ad;
7
+ $p_lighter: #a8bac2;
8
+ $p_lightest: #eef3f5;
9
+ $p_dark: #1c313a;
10
+ $p_darkest: #1c313a;
11
+ $secondary: #303f9f;
12
+ $s_light: #666ad1;
13
+ $s_lighter: #a0a0d1;
14
+ $s_dark: #001970;
15
+ $p_text: #1c313a;
16
+ $p_text_dimmed: #5e8ca7;
17
+ $s_text: #ffffff;
Binary file
Binary file
@@ -0,0 +1,49 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 460 460" style="enable-background:new 0 0 460 460;" xml:space="preserve">
5
+ <g>
6
+ <path style="fill:#325763;" d="M375,310.077V460h35V280.522C400.197,292.319,388.352,302.349,375,310.077z"/>
7
+ <path style="fill:#05232E;" d="M150,347.53V460h35V357.5c35.133,0,67.006-13.943,90.402-36.59l-72.607-13.83
8
+ C189.091,324.755,170.933,338.8,150,347.53z"/>
9
+ <path style="fill:#FAEAB6;" d="M410,201.369l-0.084-0.003c-1.574,41.607-28.08,76.252-64.916,89.898v31.468
10
+ c10.614-2.961,20.668-7.254,30-12.655c13.352-7.727,25.197-17.758,35-29.554c17.723-21.327,28.774-48.398,29.895-78.022H440
11
+ v-98.833l-30,10V201.369z"/>
12
+ <path style="fill:#6B8F9C;" d="M202.794,307.08C219.845,285.088,230,257.481,230,227.5v-47.727L100,197.5c-38.66,0-70-31.34-70-70
13
+ c0-38.66,31.34-70,70-70v-30c-55.229,0-100,44.771-100,100c0,55.228,44.771,100,100,100V325H65v135h35V357.5
14
+ c17.719,0,34.607-3.551,50-9.97C170.933,338.8,189.091,324.755,202.794,307.08z"/>
15
+ <path style="fill:#325763;" d="M440,47.143L420,30h-27V0c-12.065,0-22.362,7.534-26.479,18.144l-57.98,149.564L230,179.773V227.5
16
+ c0,29.982-10.155,57.588-27.206,79.58l72.607,13.83L310,327.5V460h35V291.263c36.836-13.646,63.342-48.29,64.916-89.898
17
+ l0.084,0.003v-87.702l30-10l1.026-0.342C451.462,99.846,460,88,460,77V50L440,47.143z"/>
18
+ </g>
19
+ <g>
20
+ </g>
21
+ <g>
22
+ </g>
23
+ <g>
24
+ </g>
25
+ <g>
26
+ </g>
27
+ <g>
28
+ </g>
29
+ <g>
30
+ </g>
31
+ <g>
32
+ </g>
33
+ <g>
34
+ </g>
35
+ <g>
36
+ </g>
37
+ <g>
38
+ </g>
39
+ <g>
40
+ </g>
41
+ <g>
42
+ </g>
43
+ <g>
44
+ </g>
45
+ <g>
46
+ </g>
47
+ <g>
48
+ </g>
49
+ </svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg id="Capa_1" data-name="Capa 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 187 187"><defs><style>.cls-1{fill:url(#linear-gradient);}</style><linearGradient id="linear-gradient" x1="13.97" y1="93.5" x2="172.35" y2="93.5" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#00ffa9"/><stop offset="1" stop-color="#0d4dff"/></linearGradient></defs><title>Q</title><path class="cls-1" d="M172.35,127.34c-.29-10.91-.13-21.84-.06-32.76a17.24,17.24,0,0,0-1.58-7.75c-3.35-7-6.7-14.1-9.82-21.25-1.69-3.88-4.15-5.56-8.54-5.45-10.5.27-21,0-31.52.15-3.11,0-4.41-.61-4.23-4,.3-5.34-.21-10.73.15-16.06.41-6.1-2.37-7.95-8-7.87-14.43.21-28.85.07-43.28.07s-28.85,0-43.27,0c-7.25,0-8.16,1-8.17,8.24Q14,75,14,109.27c0,10.35,0,10.33,10.25,11.21,1.19.1,3.43-.74,2.91,1.72-.28,1.31-.18,3.56-2.63,3.54-1,0-2.07.05-3.09,0-3.51-.13-7.17.13-7.26,4.59s3.7,5,7.11,4.76,5,.86,6.24,4.15c3.91,10,11.68,15.3,22.39,15.37s18.45-5.3,22.53-15.22c1.28-3.11,2.58-4.41,6.09-4.31,9.89.27,19.79.24,29.67,0,3.44-.08,4.89,1,6.16,4.28a23.24,23.24,0,0,0,22.49,15.29c10.77-.2,18.42-5.5,22.52-15.34,1.2-2.88,2.17-4.51,5.51-4.2C170.45,135.65,172.49,132.88,172.35,127.34ZM150.49,96.05c-3.36.15-22.39.11-27.46.09a1.23,1.23,0,0,1-1.23-1.25V75.08a1.25,1.25,0,0,1,1.25-1.25h3.6c5.94,0,11.88,0,17.82,0a5.66,5.66,0,0,1,5.43,3.33c1.93,3.84,3.84,7.69,5.45,11.66C157.16,93.29,155.42,95.83,150.49,96.05Z"/></svg>
Binary file
@@ -6,11 +6,7 @@ category: about
6
6
 
7
7
  ---
8
8
  <div class="profile">
9
- <div class="avatar">
10
- <a href="about.html" alt="avatar">
11
- <img src="{{ site.data.metaData.avatar_url }}" alt="avatar" onerror="this.style.display='none'">
12
- </a>
13
- </div>
9
+ {% include avatar.html %}
14
10
  <h2>{{ site.data.menu.menu_headline }}</h2>
15
11
  <p>{{ site.data.menu.menu_intro }}</p>
16
12
  </div>
@@ -20,12 +20,12 @@ summary: Summary of a category. It is just a special placeholder wrapped in a pa
20
20
  </div>
21
21
  </div>
22
22
  </a>
23
- <a class="item">
23
+ <a class="item" >
24
24
  <div class="icon"><img src="assets/img/project-2.svg"></div>
25
25
  <div class="content">
26
26
  <h4>CatoCat</h4>
27
27
  <div class="description">
28
- CatoCat description. It's very fun and so on
28
+ CatoCat description. It's very fun and so on.
29
29
  </div>
30
30
  </div>
31
31
  </a>
@@ -34,12 +34,12 @@ summary: Summary of a category. It is just a special placeholder wrapped in a pa
34
34
  <div class="group">
35
35
  <div class="title">Title for this section</div>
36
36
  <ul>
37
- <a class="item">
37
+ <a class="item" href="gate.html">
38
38
  <div class="icon"><img src="assets/img/project-3.svg"></div>
39
39
  <div class="content">
40
- <h4>Track tacking</h4>
40
+ <h4>Gate page</h4>
41
41
  <div class="description">
42
- Track tacking description. It's a track, but more colorful
42
+ This particular cell will take you to the gate webpage, which is a former "homepage". You can still use it if you want!
43
43
  </div>
44
44
  </div>
45
45
  </a>
@@ -62,16 +62,16 @@ summary: Summary of a category. It is just a special placeholder wrapped in a pa
62
62
  <div class="content">
63
63
  <h4>Project coffuska</h4>
64
64
  <div class="description">
65
- Project that converts coffee into lines of code
65
+ Project that converts coffee into lines of code. Or will, right now there is nothing
66
66
  </div>
67
67
  </div>
68
68
  </a>
69
69
  <a class="item">
70
70
  <div class="icon"><i class="fas fa-cat"></i></div>
71
71
  <div class="content">
72
- <h4>Project x</h4>
72
+ <h4>Project X</h4>
73
73
  <div class="description">
74
- Project x description. It's very fun and so on
74
+ Project X description. It's very fun and so on. Well, for now there is nothing
75
75
  </div>
76
76
  </div>
77
77
  </a>
@@ -0,0 +1,4 @@
1
+ ---
2
+ layout: gate
3
+ permalink: gate.html
4
+ ---
@@ -0,0 +1,9 @@
1
+ ---
2
+ title: Category 1
3
+ layout: default
4
+ permalink: super-cat.html
5
+ category: category-1
6
+ ---
7
+ <hr>
8
+ <h1>Super cat!</h2>
9
+ <div class="icon"><img src="assets/img/project-1.png"></div>
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.13
4
+ version: 0.0.14
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-07 00:00:00.000000000 Z
11
+ date: 2020-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -38,20 +38,24 @@ files:
38
38
  - _data/customs.yml
39
39
  - _data/menu.yml
40
40
  - _data/metaData.yml
41
+ - _includes/avatar.html
41
42
  - _includes/common-head.html
42
43
  - _includes/cookies.js
43
44
  - _includes/customizations.html
44
45
  - _includes/footer.html
45
- - _includes/home.js
46
+ - _includes/gate.js
46
47
  - _includes/menu.html
47
48
  - _layouts/category-aggregator.html
48
49
  - _layouts/default.html
50
+ - _layouts/gate.html
49
51
  - _layouts/home.html
50
52
  - _layouts/post.html
51
53
  - _sass/minimal-categorized.scss
54
+ - _sass/styles/_avatar.scss
52
55
  - _sass/styles/_category-aggregator.scss
53
56
  - _sass/styles/_cookies.scss
54
57
  - _sass/styles/_defaults.scss
58
+ - _sass/styles/_gate.scss
55
59
  - _sass/styles/_home.scss
56
60
  - _sass/styles/_index.scss
57
61
  - _sass/styles/_layout.scss
@@ -60,16 +64,25 @@ files:
60
64
  - _sass/styles/_profile.scss
61
65
  - _sass/styles/_projects-collection.scss
62
66
  - _sass/variables/_colors.scss
67
+ - _sass/variables/_dark-theme.scss
63
68
  - _sass/variables/_index.scss
64
69
  - _sass/variables/_layout.scss
70
+ - _sass/variables/_light-theme.scss
65
71
  - _sass/variables/_mixins.scss
66
72
  - assets/img/avatar.png
67
73
  - assets/img/category-1.jpg
68
74
  - assets/img/category-2.jpg
75
+ - assets/img/ko-fi.jpg
76
+ - assets/img/project-1.png
77
+ - assets/img/project-2.svg
78
+ - assets/img/project-3.svg
79
+ - assets/img/project-4.png
69
80
  - assets/styles/styles.scss
70
81
  - pages/about.html
71
82
  - pages/category-1.html
72
83
  - pages/category-2.html
84
+ - pages/gate.html
85
+ - pages/super-cat.html
73
86
  homepage: https://github.com/ItsMeaga1n/minimal-categorized
74
87
  licenses:
75
88
  - MIT