termina-plex 0.1.4 → 0.1.5.2

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: bdadc75877d3362f89cde88c7074b354554e1185aebe48854d2f81ebb4436470
4
- data.tar.gz: a4b6569b6d7800bf5c62a34870b7cbc1596c8340ef3186d76c84ba7cfe1e9385
3
+ metadata.gz: 4f93c4f07fa1f72b68e957ed91e2b7464b71526cf83fb31da8aa9cef9c8c1940
4
+ data.tar.gz: fe42594ae79ea11181095049ade1071980aa770fdf3c1763bdbc6f8bf52ae696
5
5
  SHA512:
6
- metadata.gz: 2b24accd6886ff0d8865255c9a2b1b2258116cbf7b1fb46b429aec84ea3fe311d5909e07b4a50bbd09fd8e79093a76f2e2b99943a8808e015b5d5d1a4ad9ac35
7
- data.tar.gz: ce338a38acbe50d84d220e770d8c5ef22105fafac847aa2957903b980d4db15d6b7b4265b0499d66f178091214ae5aa3f2dd6cc3fe3e49916d5e288c3e6fc086
6
+ metadata.gz: cdffee50cd6510a2a75ff227cb841cdd7d3247db9557e5b7e88587cca0fb56d246d9d1f6aaf6a2c36062956232f1193e23d8047047cdd4d0aaaeb22aa476eb95
7
+ data.tar.gz: 25ad10877d83eb9a93b9d26f3ad816e88592cf58c654f91e02def040c62e4d647da64b5d593531ed5c9c55be24a0837e166689059858f5d522f07bb3d3a21771
data/README.md CHANGED
@@ -8,7 +8,13 @@ By the default, the theme respects the `prefers-color-scheme` value provided by
8
8
 
9
9
  ## Installation
10
10
 
11
- Add this line to your Jekyll site's Gemfile:
11
+ Add this line to your Jekyll site's Gemfile to install:
12
+
13
+ ```ruby
14
+ gem "termina-plex"
15
+ ```
16
+
17
+ To install the theme from GitHub, add this line to your Jekyll site's Gemfile:
12
18
 
13
19
  ```ruby
14
20
  gem "termina-plex", git: "https://github.com/questionlp/termina-plex.git"
@@ -42,6 +48,20 @@ The links displayed in the header of the page are defined in the `termina-plex.h
42
48
 
43
49
  The social links displayed under the site title in the main section of the landing page are defined by the `termina-plex.social_links` setting. Each link is defined as an object with a `name` and `url` key. An optional `rel` key is available if link-based validation is required by applications like Mastodon. As with the header link names, the link names will also be transformed to lowercase via CSS.
44
50
 
51
+ ## Screenshots
52
+
53
+ ![Screenshot of the Termina Plex theme for Jekyll showing the landing page in dark mode](/screenshots/termina-plex-01-landing-page-dark.png)
54
+
55
+ ![Screenshot of the Termina Plex theme for Jekyll showing the landing page in light mode](/screenshots/termina-plex-02-landing-page-light.png)
56
+
57
+ ![Screenshot of the Termina Plex theme for Jekyll showing a listing blog posts in dark mode](/screenshots/termina-plex-03-blog-post-listing-dark.png)
58
+
59
+ ![Screenshot of the Termina Plex theme for Jekyll showing a listing blog posts in light mode](/screenshots/termina-plex-04-blog-post-listing-light.png)
60
+
61
+ ![Screenshot of the Termina Plex theme for Jekyll showing a blog post in dark mode](/screenshots/termina-plex-05-blog-post-dark.png)
62
+
63
+ ![Screenshot of the Termina Plex theme for Jekyll showing a blog post in light mode](/screenshots/termina-plex-06-blog-post-light.png)
64
+
45
65
  ## License
46
66
 
47
67
  The theme is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -8,8 +8,6 @@
8
8
  {% assign catitems = tempcat | split: '#' %}
9
9
  {% capture catname %}{{ catitems[1] }}{% endcapture %}
10
10
  <div class="metaCategory">
11
- <h2 class="postTitle">
12
11
  <a href="/category/{{ catname }}">{{ catname }}</a>
13
- </h2>
14
12
  </div>
15
13
  {% endfor %}
@@ -8,8 +8,6 @@
8
8
  {% assign tagitems = temptag | split: '#' %}
9
9
  {% capture tagname %}{{ tagitems[1] }}{% endcapture %}
10
10
  <div class="metaTag">
11
- <h2 class="postTitle">
12
11
  <a href="/tag/{{ tagname }}">{{ tagname }}</a>
13
- </h2>
14
12
  </div>
15
13
  {% endfor %}
@@ -15,10 +15,10 @@
15
15
 
16
16
  .postTitle {
17
17
  text-decoration: none;
18
- text-transform: capitalize;
19
18
  font-family: $header-font-family;
20
19
  font-size: 1.2em;
21
20
  font-weight: 400;
21
+ text-transform: capitalize;
22
22
  float: left;
23
23
  width: 75%;
24
24
  margin: 0 0 1rem 0;
@@ -77,3 +77,10 @@ th, tr, td {
77
77
  padding: $spacingUnit * 0.25 $spacingUnit * 0.375;
78
78
  margin: initial;
79
79
  }
80
+
81
+ .metaTag, .metaCategory {
82
+ display: inline-flex;
83
+ font-family: $header-font-family;
84
+ font-size: 1.2em;
85
+ padding: 0 $spacingUnit * 1.5 $spacingUnit * 0.5 0;
86
+ }
metadata CHANGED
@@ -1,12 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: termina-plex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Linh Pham
8
- - Matúš Námešný
9
- - Joel Glovier
10
8
  autorequire:
11
9
  bindir: bin
12
10
  cert_chain: []
@@ -97,7 +95,6 @@ dependencies:
97
95
  description:
98
96
  email:
99
97
  - hello@linh.social
100
- - jglovier@github.com
101
98
  executables: []
102
99
  extensions: []
103
100
  extra_rdoc_files: []