arco 0.8.0 → 0.8.1

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: 526cd05606bf060a1a1b17e57e7be4ed0c84763569b5860b0f2123dff9a148ff
4
- data.tar.gz: 707a6ba4bb548d1f1edb5053809822fc51225b593c0012bf7ed3d48573e77b18
3
+ metadata.gz: 1af24c65938ba80784838ec1243ada81f4a4306d96fa8d23f6e73e65cee7a9ac
4
+ data.tar.gz: 030f948cd00b67501251307bd9d973a5a1b27762ac7c423db4cf04d733e065e3
5
5
  SHA512:
6
- metadata.gz: 75050f7bd3ca7302c8dc132058af92249c6646c781f4c859d8f40944bca14e76582ee9ea5627a1cc0244185012d10cdd8e229f0fe6b9917d26fded4899a097ed
7
- data.tar.gz: 765cb69e42c12307d9f36d21225ca7385b7cb1108f6fd66f83ead45138b22963f0a11c32bdd40840ebec4cfea25dfefbe3f9e72f7af80916e9564cbe7df15691
6
+ metadata.gz: 3442699460ab9c6e777dfe59881a75928ce98c7c17ab2b9315986748349fc27445be9fa47e1797b396e12de296350f5af646294985aff71259139408c2b92936
7
+ data.tar.gz: 48d9683e05f2ce1ef59d1cdecb7bd3e2c12c62030d46b737d396f2ecba274681d5e87b137e1768e8b27f39b747ff62bebe1bb599eae79a76475e3d84a779bac3
@@ -17,30 +17,14 @@
17
17
  </div>
18
18
  </div>
19
19
  <div class="sidebar-links">
20
- <div class="sidebar-links-top">
21
- {% assign identifier = page.url | split: "/" | last %}
22
- {% if identifier == "completed" %}
23
- completed
24
- {% else %}
25
- <a href="{{ "/projects/completed" }}" class="fade-onclick">completed</a>
26
- {% endif %}
27
- /
28
- {% if identifier == "ongoing" %}
29
- ongoing
30
- {% else %}
31
- <a href="{{ "/projects/ongoing" }}" class="fade-onclick">ongoing</a>
32
- {% endif %}
33
- </div>
34
- <div class="sidebar-links-bottom">
35
- {% if site.github_url %}
36
- <a href="{{ site.github_url }}">github</a>
37
- {% endif %}
38
- {% if site.github_url and site.resume %}
39
- /
40
- {% endif %}
41
- {% if site.resume %}
42
- <a href="{{ "/resume" }}" class="fade-onclick">resume</a>
43
- {% endif %}
44
- </div>
20
+ {% if site.github_url %}
21
+ <a href="{{ site.github_url }}">github</a>
22
+ {% endif %}
23
+ {% if site.github_url and site.resume %}
24
+ /
25
+ {% endif %}
26
+ {% if site.resume %}
27
+ <a href="{{ "/resume" }}" class="fade-onclick">resume</a>
28
+ {% endif %}
45
29
  </div>
46
30
  </section>
@@ -5,8 +5,7 @@ layout: default
5
5
  <section class="content">
6
6
  <svg id="content-fader"></svg>
7
7
  <div class="list-posts">
8
- {% assign posts = site.categories[page.category] | default: site.posts %}
9
- {% for post in posts %}
8
+ {% for post in site.posts %}
10
9
  <div class="list-post">
11
10
  <a href="{{ post.url }}" class="fade-onclick">
12
11
  <div class="list-post-link">
@@ -22,10 +21,7 @@ layout: default
22
21
  <div class="list-post-footer">
23
22
  <span class="list-post-date">{{ post.date | date_to_string}}</span>
24
23
  &middot;
25
- <a href="{{ "/projects/" }}{{ post.category }}" class="fade-onclick"><span class="list-post-category">{{ post.category }}</span></a>
26
- <div class="list-post-tags">
27
- {{ post.tags | join: ", "}}
28
- </div>
24
+ <span class="list-post-tags">{{ post.tags | join: ", "}}</span>
29
25
  </div>
30
26
  </div>
31
27
  {% endfor %}
@@ -25,7 +25,7 @@ layout: default
25
25
  <div class="post-header">
26
26
  <span class="post-date">{{ page.date | date_to_string}}</span>
27
27
  &middot;
28
- <a href="{{ "/projects/" }}{{ page.category }}" class="fade-onclick"><span class="post-category">{{ page.category }}</span></a>
28
+ <span class="post-tags">{{ page.tags | join: ", "}}</span>
29
29
  </div>
30
30
  <div class="clickable-image"><a href="{{ page.images.top }}" style="max-width: 80%">
31
31
  <img class="post-image" alt="{{ page.title }} | {{ page.description | truncate: 80 }}" src="{{ page.images.top }}" />
@@ -47,7 +47,7 @@
47
47
  }
48
48
 
49
49
  .list-post-footer {
50
- margin-left: 1.4em;
50
+ margin: 0 1.4em;
51
51
  }
52
52
 
53
53
  .list-post-date {
@@ -56,18 +56,8 @@
56
56
  font-size: 0.9rem;
57
57
  }
58
58
 
59
- .list-post-category {
60
- font-weight: bold;
61
- font-size: 0.9rem;
62
- color: $primary-highlight;
63
- &:hover, &:focus {
64
- color: lighten($primary-highlight, 14%);
65
- }
66
- }
67
-
68
59
  .list-post-tags {
69
60
  font-weight: bold;
70
61
  font-size: 0.9rem;
71
62
  color: $tertiary-highlight;
72
- margin-top: 0.4em;
73
63
  }
@@ -29,13 +29,10 @@
29
29
  margin-top: 1em;
30
30
  }
31
31
 
32
- .post-category {
32
+ .post-tags {
33
33
  font-weight: bold;
34
34
  font-size: 0.9rem;
35
- color: $primary-highlight;
36
- &:hover, &:focus {
37
- color: lighten($primary-highlight, 14%);
38
- }
35
+ color: $tertiary-highlight;
39
36
  }
40
37
 
41
38
  .post-content {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arco
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - meebuhs
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-14 00:00:00.000000000 Z
11
+ date: 2020-08-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll