jscom_ice 0.0.5 → 0.0.7

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: 209c6f8f01083414e518d9cfc88ed7eed477df161daf25f6003bc10630ab4e85
4
- data.tar.gz: 61cc2c4ba8aa668d13e6b6be8da99a88062c36c19d1fc8a484d0af01d2264684
3
+ metadata.gz: 4254caf3169c23ebbccbe115b7b8257ac7cfbdc96bf5d73866c867a452578a4e
4
+ data.tar.gz: c9281776d2d1ad0e424605b157692594b2851d577801ac211ce04e560708e077
5
5
  SHA512:
6
- metadata.gz: 0a3d666043df04e60d9837c11f53eea03cdb1d4b6cb32dff1f08bb0db6c0c4c0d0ea8dc67820230d9ec8c0518b2ed30471ac870a42a141dc10d3a4af33913ff1
7
- data.tar.gz: abe10a08b023ad61821322f300d00b6b0c54bc60e01786e1736c04c761a894e67ae8e479c4f9321bd365fb8abbcbc05109dfae69d5ba993bb096fab3fccfe45f
6
+ metadata.gz: ccb996e3c4461090370d3a81f256cc8d9eb5ce61fc127418bdb7167205714b55dc48f03191cd1f45a6d3492c7b306dbbd5433d063aa90bcb106474cc017c06ef
7
+ data.tar.gz: 542d4ddd11075786f3699d9ee7fdcef279e6085fad94587d7c83808e8baaea51f1e47165f4567aba05945e3cc84ea20b4e527ac1ce246898579361b2a8b57878
data/README.md CHANGED
@@ -27,5 +27,5 @@ Releasing requires a rubygems account with access to the jscom-ice gem.
27
27
  1. Make changes to the theme
28
28
  2. Adjust version in the gemspec
29
29
  3. build the gem `gem build jscom_ice_theme.gemspec`
30
- 4. Push the gem to rubygems `gem push jscom-ice-0.0.1.gem` (be sure to update the version number)
30
+ 4. Push the gem to rubygems `gem push jscom_ice-0.0.1.gem` (be sure to update the version number)
31
31
 
data/_includes/posts.html CHANGED
@@ -19,10 +19,10 @@
19
19
  <div class="posts-wrapper">
20
20
  {%- for post in site.categories[include.category] limit: include.post_display_limit -%}
21
21
  <article class="post-item row">
22
- <div class="col-md-auto">
22
+ <div class="col-md-2">
23
23
  <span class="post-item-date">{{ post.date | date: "%b %d, %Y" }}</span>
24
24
  </div>
25
- <div class="col-md-10">
25
+ <div class="col-md-8">
26
26
  <span class="post-item-title">
27
27
  <a href="{{ post.url }}">{{ post.title | escape }}</a>
28
28
  </span>
data/_includes/tags.html CHANGED
@@ -1,3 +1,10 @@
1
+ ---
2
+ title: Tags
3
+ permalink: /tags/
4
+ layout: page
5
+ excerpt: Sorted article by tags.
6
+ ---
7
+
1
8
  <div class="archive-tags">
2
9
  <a class="tag-item" href="#">all</a>
3
10
  {%- for tag in site.tags -%}
@@ -6,8 +13,6 @@
6
13
  {%- endfor -%}
7
14
  </div>
8
15
 
9
- <!-- TODO Dates / Titles aren't aligned -->
10
-
11
16
  {%- for tag in site.tags -%}
12
17
  {%- capture name -%}{{ tag | first }}{%- endcapture -%}
13
18
  <h2 id="{{ name }}">{{ name | upcase }}</h2>
data/_layouts/post.html CHANGED
@@ -12,7 +12,7 @@ layout: default
12
12
  <span itemprop="keywords">
13
13
  {% for tag in tags %}
14
14
  <a class="tag"
15
- href="/tags/#{{tag | downcase | slugify}}">{{tag | upcase }}</a>{% unless forloop.last %},{% endunless %}
15
+ href="#">{{tag | upcase }}</a>{% unless forloop.last %},{% endunless %}
16
16
  {% endfor %}
17
17
  </span>
18
18
  </div>
@@ -1,6 +1,6 @@
1
1
  .posts-wrapper {
2
2
  background-color: transparent;
3
- padding: 10px;
3
+ padding: 5px;
4
4
 
5
5
  .posts-item-note {
6
6
  color: $dark-text-link-blue;
@@ -9,6 +9,8 @@
9
9
 
10
10
  .post-item {
11
11
  border-top: transparent;
12
+ white-space: normal;
13
+ overflow-wrap: break-word;
12
14
  }
13
15
 
14
16
  // last post item won't have a border
@@ -21,6 +23,7 @@
21
23
  display: block;
22
24
  color: $dark-white;
23
25
  font-weight: bold;
26
+ white-space: nowrap;
24
27
  }
25
28
 
26
29
  .post-item-title a {
@@ -34,3 +37,15 @@
34
37
  }
35
38
 
36
39
 
40
+
41
+ .col-md-2 {
42
+ flex: 1; // or a fixed width if you want the date to have a specific width
43
+ white-space: nowrap;
44
+ text-overflow: ellipsis;
45
+ }
46
+
47
+ .col-md-8 {
48
+ flex: 5; // allows the title to grow and take up remaining space
49
+ //overflow: hidden;
50
+ padding-left: 10px; // adjust as necessary for spacing
51
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jscom_ice
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Sosoka
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-15 00:00:00.000000000 Z
11
+ date: 2024-02-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll