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 +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 +16 -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: 4254caf3169c23ebbccbe115b7b8257ac7cfbdc96bf5d73866c867a452578a4e
|
4
|
+
data.tar.gz: c9281776d2d1ad0e424605b157692594b2851d577801ac211ce04e560708e077
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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,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.
|
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:
|
11
|
+
date: 2024-02-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|