askclass-news-theme 0.2.7 → 0.2.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: 5d84ba2df51dcca5fd3261cbdf3517049bc7324c1ca9a559dc12994f7c3f5d34
4
- data.tar.gz: c2b4de5d00d11d05634ead0c4bd602e7cbbdf5eb33b1e9384b86ee61a2801d6b
3
+ metadata.gz: 930e5d5fa04639b25103ec9651119943b3177a85b1cdba31549b2f33c0bea743
4
+ data.tar.gz: 52017c5e4579218b292c09c6927258818479ba7846996226f1013c74be8b0ed8
5
5
  SHA512:
6
- metadata.gz: cc781878dc8b8188d92ea3886b25cdd1e87c29a376f5f28909eeaff4c285cbe37cb9de38b48130ba79924c3a854e635b01d416ce9ed570b41da471a42f50d64d
7
- data.tar.gz: 47617a0860695b97557beaee1f0fb05a8849911a333a71f8a56b2d4854761f02aad86eeeabb0d082be14133e3fed426b30597f1a8989028ffe14639bebc0542a
6
+ metadata.gz: 6cad090bf1b832207996f6c11f28c111334a584fc203c6668db328c75a8bd1f201eb6e9f3b3ca949eb091500397db92a76ccb90ff30745ee24fa335fdcf6b8ce
7
+ data.tar.gz: 362aee650c01d0e7bca6436a6698ce8993ea50c888afe84dbd52d2247bf5851e60b3fea763db0cb67d3c1ee0b09f6497832804c2acf41177e63bbba38ae31a73
data/README.md CHANGED
@@ -4,40 +4,68 @@ Simple responsive Jekyll theme featuring posts and authors.
4
4
 
5
5
  ## Installation
6
6
 
7
- Add this line to your Jekyll site's `Gemfile`:
7
+ ```sh
8
+ # If starting fresh add this
9
+ $ echo 'source "https://rubygems.org"' > Gemfile
8
10
 
9
- ```ruby
10
- gem "askclass-news-theme"
11
+ $ echo 'gem "askclass-news-theme"' >> Gemfile
12
+ $ sed -i '1 s/^/theme: askclass-news-theme\n/' _config.yml
13
+ $ bundle
11
14
  ```
12
15
 
13
- And add this line to your Jekyll site's `_config.yml`:
14
-
15
- ```yaml
16
- theme: askclass-news-theme
16
+ ## Configuration
17
+
18
+ Copy these files:
19
+ - `index.html`
20
+ - `config.yml` (edit this to fit your need)
21
+ - `content/` (whole folder as an example)
22
+ - `pwabuilder-sw.js` (PWA)
23
+
24
+ ## Post File Format
25
+
26
+ ```md
27
+ ---
28
+ # Don't change this
29
+ layout: post
30
+ # Well, what else could this be?
31
+ title: The Hobbit
32
+ # This is your author's name
33
+ category: J.R.R._Tolkien
34
+ # Alternatively
35
+ writer: J.R.R Tolkien
36
+ # Values: c1 .. c10
37
+ color: c1
38
+ # Tags separated by spaces
39
+ tags: fiction fantasy
40
+ # Optional title image (shows up on index)
41
+ image: https://article.images/iamge.jpg
42
+ # Optional source info
43
+ source: The Tolkien Society
44
+ source_url: https://www.tolkiensociety.org/
45
+ ---
46
+
47
+ Whatever is here goes gets on index.
48
+ <!--more-->
49
+ The rest of the article.
17
50
  ```
18
51
 
19
- And then execute:
20
-
21
- ```sh
22
- $ bundle
52
+ ## Writer File Format
53
+
54
+ ```md
55
+ ---
56
+ # Don't change this
57
+ layout: writer
58
+ # Optional size of image
59
+ size: 100
60
+ # Optional position of the profile image either center or left
61
+ style: center
62
+ # Optional image
63
+ image: https://author.images/tolkien.jpg
64
+ ---
65
+
66
+ Biography.
23
67
  ```
24
68
 
25
- ## Usage
26
-
27
- Customizable fields in the `_config.yaml`:
28
-
29
- Field | Description
30
- :--- | :---
31
- `title` | Name of the site
32
- `description` | Describe the site
33
- `site_url` | For meta field
34
- `site_cat` | [Manifest Categories] used in `manifest.json`
35
- `twitter` | Optional Twitter handle for meta field
36
- `logo` | Logo images and sizes for header of the page
37
- `color` | For dressing the splash screen and chrome
38
- `footer` | Bottom of the page info
39
- `font_families` | Which [Google Fonts] to load (edit `_sass/_default.scss` correspondingly)
40
-
41
69
  ## Contributing
42
70
 
43
71
  Bug reports and pull requests are welcome on GitHub at https://github.com/beAuthentic/askclass-news-theme.
data/_config.yml CHANGED
@@ -48,6 +48,7 @@ acn:
48
48
  - icon: "toys"
49
49
  href: "https://app.askclass.com"
50
50
  text: "Icebreakers"
51
+ # Donot change the below (will figure something out later)
51
52
  font_families:
52
53
  - Teko
53
54
  - Open+Sans
data/_sass/_bullets.scss CHANGED
@@ -4,14 +4,6 @@ ol > li > ul > li {
4
4
  ol > li > ol > li {
5
5
  list-style: lower-alpha;
6
6
  }
7
- ul > li > ul {
8
- list-style: none;
9
- li::before {
10
- content: "\2022";
11
- color: var(--secondaryColor);
12
- font-weight: bold;
13
- margin-left: -1em;
14
- width: 1em;
15
- display: inline-block;
16
- }
7
+ ul > li > ul > li {
8
+ list-style-type: square;
17
9
  }
data/_sass/_default.scss CHANGED
@@ -1,8 +1,7 @@
1
- $specialFont: 'Josefin Sans', sans-serif;
2
1
  $mainFont: 'Open Sans', sans-serif;
3
2
  $secondaryFont: 'Teko', sans-serif;
3
+ $specialFont: 'Josefin Sans', sans-serif;
4
4
  $monoFont: 'Share Tech Mono', monospace;
5
- $textFont: 'Lexend', sans-serif;
6
5
  $primaryColor: aliceblue;
7
6
  $secondaryColor: skyblue;
8
7
  $linkColor: deeppink;
@@ -18,7 +17,6 @@ html {
18
17
  --mainFont: #{$mainFont};
19
18
  --secondaryFont: #{$secondaryFont};
20
19
  --monoFont: #{$monoFont};
21
- --textFont: #{$textFont};
22
20
  --primaryColor: #{$primaryColor};
23
21
  --secondaryColor: #{$secondaryColor};
24
22
  --linkColor: #{$linkColor};
@@ -161,6 +159,7 @@ footer {
161
159
  color: $darkColor;
162
160
  font-size: 14px;
163
161
  ul {
162
+ padding: 0;
164
163
  display: flex;
165
164
  li {
166
165
  @include align-middle();
data/_sass/_grid.scss CHANGED
@@ -1,5 +1,5 @@
1
1
  $width: 180px;
2
- $height: 450px;
2
+ $height: 150px;
3
3
 
4
4
  ul.grid {
5
5
  list-style-type: none;
@@ -19,6 +19,6 @@ ul.grid {
19
19
  img {
20
20
  object-fit: cover;
21
21
  width: 100%;
22
- max-height: $height;
22
+ height: $height;
23
23
  }
24
24
  }
data/_sass/_table.scss CHANGED
@@ -2,16 +2,17 @@ $odd: #3f3f3f;
2
2
  $header: #2f2f2f;
3
3
  $border: #333;
4
4
 
5
- table, th, td {
5
+ table {
6
6
  border-bottom: 1px solid $border;
7
7
  border-collapse: collapse;
8
- padding: 5px;
9
- }
10
-
11
- th {
12
- background-color: $header;
13
- }
14
-
15
- tr:nth-child(odd) {
16
- background-color: $odd;
8
+ th {
9
+ background-color: $header;
10
+ }
11
+ tr:nth-child(even) {
12
+ background-color: $odd;
13
+ }
14
+ td, th {
15
+ vertical-align: top;
16
+ padding: 5px;
17
+ }
17
18
  }
data/assets/css/md.scss CHANGED
@@ -4,4 +4,5 @@
4
4
  @import "post";
5
5
  @import "paginator";
6
6
  @import "bullets";
7
+ @import "table";
7
8
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: askclass-news-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - AskClass
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-17 00:00:00.000000000 Z
11
+ date: 2022-06-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll