jscom_ice 0.0.5 → 0.0.6
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 +4 -4
- data/README.md +1 -1
- data/_includes/posts.html +2 -2
- data/_includes/tags.html +7 -2
- data/_layouts/post.html +1 -1
- data/_sass/component/_posts.scss +17 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c23a501e85062bccc9170c99033efa4097451ab529f65bc56ce271b74512108
|
4
|
+
data.tar.gz: ce06cd142a5ef8422600354f077d6d9734f9b76a6624f18be2152bcc9d138593
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f93f4b27b8b76b89144113513fac99661f9154246cfaf5cbc66926c84a85d13ff1b5632dfe279fca5ba4351e73197d216abcc3a6b216df585c57e131d6f8948f
|
7
|
+
data.tar.gz: e05cb477408d56466f3f0a228d1c41efaaf8247feb9ec044991c8f19e1977b0da601a5dde2a1f29c27b0fd1f74ac1b30daab0ad73bb681fbe5e562e7f31cbb8e
|
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
|
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-
|
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-
|
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="
|
15
|
+
href="#">{{tag | upcase }}</a>{% unless forloop.last %},{% endunless %}
|
16
16
|
{% endfor %}
|
17
17
|
</span>
|
18
18
|
</div>
|
data/_sass/component/_posts.scss
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
.posts-wrapper {
|
2
2
|
background-color: transparent;
|
3
|
-
padding:
|
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,16 @@
|
|
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
|
+
overflow: hidden;
|
45
|
+
text-overflow: ellipsis;
|
46
|
+
}
|
47
|
+
|
48
|
+
.col-md-8 {
|
49
|
+
flex: 5; // allows the title to grow and take up remaining space
|
50
|
+
//overflow: hidden;
|
51
|
+
padding-left: 10px; // adjust as necessary for spacing
|
52
|
+
}
|
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.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Sosoka
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-02-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|