askclass-news-theme 0.2.7 → 0.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5d84ba2df51dcca5fd3261cbdf3517049bc7324c1ca9a559dc12994f7c3f5d34
4
- data.tar.gz: c2b4de5d00d11d05634ead0c4bd602e7cbbdf5eb33b1e9384b86ee61a2801d6b
3
+ metadata.gz: 0a48b63bd1231bfcbac50a136ad65aac635aeaa72f6d6d939e6dd24035140469
4
+ data.tar.gz: a61408fd0bd006366d59d983ad18cf24afd1f30232e41eeb1020f9fbdd83504c
5
5
  SHA512:
6
- metadata.gz: cc781878dc8b8188d92ea3886b25cdd1e87c29a376f5f28909eeaff4c285cbe37cb9de38b48130ba79924c3a854e635b01d416ce9ed570b41da471a42f50d64d
7
- data.tar.gz: 47617a0860695b97557beaee1f0fb05a8849911a333a71f8a56b2d4854761f02aad86eeeabb0d082be14133e3fed426b30597f1a8989028ffe14639bebc0542a
6
+ metadata.gz: 43f15df18e87d22a7820435d283642350ee7e66bc37507aaa8db538544f21ac9ac17e508714ddccef3cd7e8087a8d396830772c7d0d15c66460edd250f7b07f7
7
+ data.tar.gz: cd2e8f36ffc3bb3f54739edb23d76e409fb019573d5734f33a1b09c5fa2425ce4d0b8e7f3e6358978aa25358eb9f2192cdb0d09dae3fe460ce6d1521bc93a500
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/_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};
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.8
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