askclass-home-theme 0.0.3 → 0.1.0

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: 79ebf39a48585ebae94e085b232f0dbc42f2d46952ae8a56da8da1d3ca6a5a99
4
- data.tar.gz: 48058a39723ed90712494c140656d44a2baf7c0d3207b126b1c5d74635433b26
3
+ metadata.gz: b0f03ea8c017b448577a6d7b3eb98ec48786956f92a5aa2352d9c2467022ad47
4
+ data.tar.gz: 98efd2469bc09be241ba3154192ac15bf3468327dd29f6abd5a18ddb25761358
5
5
  SHA512:
6
- metadata.gz: 1d23621970fd3b4cb5eef33e4a2562024471f79f11e501f2af0cfacff6f19b23afda6e5e1425aff7eabc3714543bbcc3c0435ba3cc50497d29e4378f91c7e526
7
- data.tar.gz: ff5fd23501809244455acf97d7b390f78677230b40471a46f22105ff9ef3532321d3b0065d9392a980e1e49c37fd765c6a42f8168c4c3f801bb1d9b47867608d
6
+ metadata.gz: 6f3b15cce31936a05f2767439aa59a23de8d0547bf49bf1cf40f6cb20084ec420937c22d61b9e25face3650a70df0b8bab2d0294e765295998ad2ebe7a5c27f1
7
+ data.tar.gz: 37392c6e0d3374deb99dfe88145da1eedaae97dd6b6ff504d511d24b4848745d0e27e0558f6743021e35833110bb79658bc0a8ea728293a602f10c06cb208322
data/README.md CHANGED
@@ -8,7 +8,8 @@ Simple responsive Jekyll theme for a home page.
8
8
  Starting fresh:
9
9
  ```sh
10
10
  $ echo 'source "https://rubygems.org"' > Gemfile
11
- $ echo 'theme: askclass-home-theme/ > _config.yml
11
+ $ echo 'gem "askclass-home-theme"' >> Gemfile
12
+ $ echo 'theme: askclass-home-theme' > _config.yml
12
13
  $ bundle
13
14
  $ jekyll serve
14
15
  ```
data/_config.yml CHANGED
@@ -36,11 +36,6 @@ ach:
36
36
  student,
37
37
  educator,
38
38
  university
39
- footer:
40
- - href: "https://askclass.com"
41
- text: "© 2023 AskClass."
42
- - href: "https://app.askclass.com"
43
- text: "Keep Asking®"
44
39
  font_families:
45
40
  - Lora
46
41
  - Open+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400;1,700
@@ -1,12 +1,22 @@
1
+ {%- assign FOOTER = site.data[LANG].footer | default: site.data.footer %}
2
+ {%- if FOOTER %}
1
3
  <footer>
2
4
  <ul>
3
- {% for item in site.ach.footer -%}
5
+ {%- for item in FOOTER -%}
4
6
  <li>
7
+ {%- if item.copyright %}
8
+ &copy; {{ site.time | date: "%Y" }}&nbsp;
9
+ {%- endif %}
5
10
  {%- if item.icon -%}
6
11
  <span class="material-symbols-outlined">{{ item.icon }}</span>
7
12
  {%- endif -%}
8
- <a href="{{ item.href }}">{{ item.text }}</a>
13
+ {%- if item.href %}
14
+ <a href="{{ item.href }}">{{ item.text }}</a>
15
+ {%- else %}
16
+ {{ item.text }}
17
+ {%- endif %}
9
18
  </li>
10
19
  {%- endfor %}
11
20
  </ul>
12
21
  </footer>
22
+ {%- endif %}
@@ -0,0 +1,15 @@
1
+ {%- if _langCount > 1 %}
2
+ {%- for lang in _langs %}
3
+ {%- assign linkText = lang.text | default: lang.tag %}
4
+ {%- if LANG == lang.tag %}
5
+ <a href="javascript:void(0)"
6
+ class="a-button small">{{ linkText }}</a>
7
+ {%- elsif lang.tag == _langs[0].tag %}
8
+ <a href="/"
9
+ class="a-button small link">{{ linkText }}</a>
10
+ {%- else %}
11
+ <a href="/{{ lang.tag }}"
12
+ class="a-button small link">{{ linkText }}</a>
13
+ {%- endif %}
14
+ {%- endfor %}
15
+ {%- endif %}
@@ -0,0 +1,8 @@
1
+ {%- assign _nav = site.data[LANG].nav | default: site.data.nav %}
2
+ <div class='nav-buttons'>
3
+ {%- include head/languages.html %}
4
+ {%- for button in _nav.buttons %}
5
+ <a href="{{ button.url }}" class="a-button {{ button.color }}">{{ button.text }}</a>
6
+ {%- endfor %}
7
+ </div>
8
+
@@ -0,0 +1,7 @@
1
+ <section class="center-align">
2
+ <article class="space-between max-width">
3
+ {%- include logo.html %}
4
+ {%- include head/top-nav-buttons.html %}
5
+ </article>
6
+ </section>
7
+
@@ -0,0 +1,9 @@
1
+ {%- assign _langs = site.data.nav.languages %}
2
+ {%- assign _langCount = _langs | size %}
3
+ {%- if _langCount > 1 %}
4
+ {%- assign LANG = page.lang | default: _langs[0].tag %}
5
+ {%- else %}
6
+ {%- assign LANG = 'en' %}
7
+ {%- endif %}
8
+ {%- assign TEXT = site.data.text[LANG] | default: site.data.text %}
9
+ {%- assign BASEURL = page.lang | default: '' | prepend: '/' %}
data/_includes/logo.html CHANGED
@@ -1,14 +1,5 @@
1
- <section class="center-align">
2
- <article class="space-between max-width">
3
- <a href="/">
4
- <img src="/assets/{{ include.image | default: site.ach.logo.image }}"
5
- width="{{ include.size | default: site.ach.logo.size }}"
6
- title="{{ site.title }}" />
7
- </a>
8
- <div class='nav-buttons'>
9
- {%- for button in site.data.nav %}
10
- <a href="{{ button.url }}" class="a-button">{{ button.text }}</a>
11
- {%- endfor %}
12
- </div>
13
- </article>
14
- </section>
1
+ <a href="{{ BASEURL }}">
2
+ <img src="/assets/{{ include.image | default: site.ach.logo.image }}"
3
+ width="{{ include.size | default: site.ach.logo.size }}"
4
+ title="{{ site.title }}" />
5
+ </a>
data/_includes/main.html CHANGED
@@ -1,4 +1,6 @@
1
- {%- for segment in site.data.main.segments %}
2
- {%- assign info = site.data.segments[segment] %}
3
- {%- include boxes/{{ info.type | default: 'fullpage' }}.html data=info %}
1
+ {%- assign _slist = site.data[LANG].main.segments | default: site.data.main.segments %}
2
+ {%- assign SEGMENTS = site.data[LANG].segments | default: site.data.segments %}
3
+ {%- for segment in _slist %}
4
+ {%- assign _info = SEGMENTS[segment] %}
5
+ {%- include boxes/{{ _info.type | default: 'fullpage' }}.html data=_info %}
4
6
  {%- endfor %}
@@ -1,14 +1,15 @@
1
1
  <!doctype html>
2
- <html lang="en">
2
+ {%- include localize.html %}
3
+ <html lang="{{ LANG }}">
3
4
  {% include header.html %}
4
5
  <body>
5
- {% include logo.html %}
6
- {% if page.url == '/' %}
6
+ {% include head/top-nav.html %}
7
+ {% if page.url == '/' or page.lang %}
7
8
  {% include main.html %}
8
9
  {% elsif page.url == '/404.html' %}
9
- <h2 class="center-align">Page not found!</h2>
10
+ <h2 class="center-align">{{ TEXT.page-not-found }}</h2>
10
11
  {% elsif page.url == '/offline.html' %}
11
- <h2 class="center-align">You're Currently Offline</h2>
12
+ <h2 class="center-align">{{ TEXT.offline }}</h2>
12
13
  {% else %}
13
14
  {{ content }}
14
15
  {% endif %}
@@ -1,8 +1,9 @@
1
1
  <!doctype html>
2
- <html lang="en">
2
+ {%- include localize.html %}
3
+ <html lang="{{ LANG }}">
3
4
  {% include header.html %}
4
5
  <body>
5
- {% include logo.html %}
6
+ {% include head/top-nav.html %}
6
7
  <section class="center-align content">
7
8
  <article class='max-width'>
8
9
  {{ content }}
data/_sass/_base.scss CHANGED
@@ -20,6 +20,7 @@
20
20
  --color-button-bg: #{$color-button-bg};
21
21
  --color-button2-fg: #{$color-button2-fg};
22
22
  --color-button2-bg: #{$color-button2-bg};
23
+
23
24
  --color-code-bg: #{$color-code-bg};
24
25
 
25
26
  --content-width: #{$content-width};
@@ -143,19 +144,16 @@ sub {
143
144
  justify-content: space-between;
144
145
  }
145
146
 
146
- .spacer {
147
- margin-top: 100px;
148
- }
149
-
150
147
  .max-width {
151
148
  max-width: var(--content-width);
152
149
  width: 100%;
153
150
  }
154
151
 
155
152
  footer {
156
- @include margin-top();
157
153
  @include align-center();
158
- color: var(--color-dark);
154
+ margin: $margin-footer;
155
+ color: $color-footer-fg;
156
+ background-color: $color-footer-bg;
159
157
  font-size: 14px;
160
158
  ul {
161
159
  padding: 0;
@@ -164,45 +162,10 @@ footer {
164
162
  @include align-middle();
165
163
  margin: 0 5px;
166
164
  a {
167
- color: var(--color-dark);
165
+ color: $color-footer-link;
168
166
  }
169
167
  }
170
168
  }
171
169
  }
172
170
 
173
- .a-button {
174
- font-size: 1em;
175
- line-height: 1em;
176
- transition: all .2s ease-in-out;
177
- border: 2px solid transparent;
178
- padding: 15px 20px;
179
- height: auto;
180
- letter-spacing: .75px;
181
- display: inline-flex;
182
- justify-content: center;
183
- align-items: center;
184
- box-sizing: border-box;
185
- border-radius: 5px;
186
- color: var(--color-button-fg);
187
- background-color: var(--color-button-bg);
188
- text-align: center;
189
- text-transform: uppercase;
190
- font-weight: bold;
191
- &:hover {
192
- opacity: 0.8;
193
- transform: translateY(-3px);
194
- box-shadow: 0 2px 4px rgba(0,0,0,0.2);
195
- }
196
- &.link {
197
- color: var(--color-fg);
198
- background-color: transparent;
199
- }
200
- &.secondary {
201
- color: var(--color-button2-fg);
202
- background-color: var(--color-button2-bg);
203
- }
204
- }
205
-
206
- .nav-buttons {
207
- margin: 0 1em;
208
- }
171
+ @import "buttons", "media";
@@ -0,0 +1,39 @@
1
+ .a-button {
2
+ font-size: 1em;
3
+ line-height: 1em;
4
+ transition: all .2s ease-in-out;
5
+ border: 2px solid transparent;
6
+ padding: 15px 20px;
7
+ height: auto;
8
+ letter-spacing: .75px;
9
+ display: inline-flex;
10
+ justify-content: center;
11
+ align-items: center;
12
+ box-sizing: border-box;
13
+ border-radius: 5px;
14
+ color: var(--color-button-fg);
15
+ background-color: var(--color-button-bg);
16
+ text-align: center;
17
+ text-transform: uppercase;
18
+ font-weight: bold;
19
+ &:hover {
20
+ opacity: 0.8;
21
+ transform: translateY(-3px);
22
+ box-shadow: 0 2px 4px rgba(0,0,0,0.2);
23
+ }
24
+ &.link {
25
+ color: var(--color-fg);
26
+ background-color: transparent;
27
+ }
28
+ &.secondary {
29
+ color: var(--color-button2-fg);
30
+ background-color: var(--color-button2-bg);
31
+ }
32
+ &.small {
33
+ padding: 5px;
34
+ }
35
+ }
36
+
37
+ .nav-buttons {
38
+ margin: 0 1em;
39
+ }
@@ -0,0 +1,32 @@
1
+ $font-main: 'Open Sans', sans-serif;
2
+ $font-mono: 'Share Tech Mono', monospace;
3
+ $font-special: 'Josefin Sans', sans-serif;
4
+ $font-secondary: 'Lora', serif;
5
+ $font-tertiary: 'Lexend', sans-serif;
6
+
7
+ $color-primary: white;
8
+ $color-secondary: floralwhite;
9
+ $color-tertiary: #2cdd88;
10
+ $color-fg: #333;
11
+ $color-bg: whitesmoke;
12
+ $color-dark: #444;
13
+ $color-link: deeppink;
14
+ $color-theme: #ffc100;
15
+
16
+ $color-row-odd: #2a2a2a;
17
+ $color-row-even: #2f2f2f;
18
+
19
+ $color-button-fg: #fff;
20
+ $color-button-bg: #ff4713;
21
+ $color-button2-fg: #fff;
22
+ $color-button2-bg: #222;
23
+
24
+ $color-code-bg: #222;
25
+
26
+ $color-footer-bg: transparent;
27
+ $color-footer-fg: #444;
28
+ $color-footer-link: #222;
29
+
30
+ $margin-footer: 100px 0 0 0;
31
+
32
+ $content-width: 1200px;
data/_sass/init.scss CHANGED
@@ -1,34 +1,6 @@
1
- $font-main: 'Open Sans', sans-serif;
2
- $font-mono: 'Share Tech Mono', monospace;
3
- $font-special: 'Josefin Sans', sans-serif;
4
- $font-secondary: 'Lora', serif;
5
- $font-tertiary: 'Lexend', sans-serif;
1
+ // Overriding custom variables. See:
2
+ // https://github.com/beAuthentic/askclass-home-theme/blob/main/_sass/_defaults.scss
6
3
 
7
- $color-primary: white;
8
- $color-secondary: floralwhite;
9
- $color-tertiary: #2cdd88;
10
- $color-fg: #333;
11
- $color-bg: whitesmoke;
12
- $color-dark: #444;
13
- $color-link: deeppink;
14
- $color-theme: #ffc100;
15
-
16
- $color-row-odd: #2a2a2a;
17
- $color-row-even: #2f2f2f;
18
-
19
- $color-button-fg: #fff;
20
- $color-button-bg: #ff4713;
21
- $color-button2-fg: #fff;
22
- $color-button2-bg: #222;
23
- $color-code-bg: #222;
24
- $color-card-bg: whitesmoke;
25
- $color-card-fg: #444;
26
-
27
- $card-font-size: 16px;
28
-
29
- $content-width: 1200px;
30
-
31
- $grid-width: 180px;
32
- $grid-image-height: 180px;
33
-
34
- @import "media", "base";
4
+ // Example, to overwrite default bg/fg colors specified in the file above:
5
+ // $color-bg: black;
6
+ // $color-fg: white;
@@ -1,3 +1,3 @@
1
1
  ---
2
2
  ---
3
- @import "init", "base", "section";
3
+ @import "section", "defaults", "init", "base";
@@ -1,3 +1,3 @@
1
1
  ---
2
2
  ---
3
- @import "post", "init";
3
+ @import "post", "defaults", "init", "base";
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: askclass-home-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - AskClass
@@ -39,9 +39,13 @@ files:
39
39
  - _includes/foot/pwaupdate.html
40
40
  - _includes/footer.html
41
41
  - _includes/head/common.html
42
+ - _includes/head/languages.html
42
43
  - _includes/head/meta.html
44
+ - _includes/head/top-nav-buttons.html
45
+ - _includes/head/top-nav.html
43
46
  - _includes/header.html
44
47
  - _includes/image.html
48
+ - _includes/localize.html
45
49
  - _includes/logo.html
46
50
  - _includes/main.html
47
51
  - _includes/video.html
@@ -49,7 +53,9 @@ files:
49
53
  - _layouts/modules.html
50
54
  - _sass/_base.scss
51
55
  - _sass/_bullets.scss
56
+ - _sass/_buttons.scss
52
57
  - _sass/_colors.scss
58
+ - _sass/_defaults.scss
53
59
  - _sass/_media.scss
54
60
  - _sass/_post.scss
55
61
  - _sass/_section.scss