arco 0.8.1 → 0.8.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1af24c65938ba80784838ec1243ada81f4a4306d96fa8d23f6e73e65cee7a9ac
4
- data.tar.gz: 030f948cd00b67501251307bd9d973a5a1b27762ac7c423db4cf04d733e065e3
3
+ metadata.gz: d5a37383a5b47ece7a581b757185eaac67f325c6c682547ec5ecaf5ef0f3bfc7
4
+ data.tar.gz: c8acd591f1bb03327e8de3de979080899d3b369a4e246b248a95eee4f4c77d5f
5
5
  SHA512:
6
- metadata.gz: 3442699460ab9c6e777dfe59881a75928ce98c7c17ab2b9315986748349fc27445be9fa47e1797b396e12de296350f5af646294985aff71259139408c2b92936
7
- data.tar.gz: 48d9683e05f2ce1ef59d1cdecb7bd3e2c12c62030d46b737d396f2ecba274681d5e87b137e1768e8b27f39b747ff62bebe1bb599eae79a76475e3d84a779bac3
6
+ metadata.gz: 796e4e121b0d95e2d460135b677f7291aa873715eb73bce0fb79967d06ed593e0f7d7c6fc354be09e01b3b895b2fa4929d9052a72eb10ee7eadd3815d0319f5e
7
+ data.tar.gz: d1a173c25f42aab7a711d818b1f85e3d34201d77b8344daa632b53ac63ec4fe5c22bd7daf2b3c72d34a9c971ec6338cde73368a54b1c2a64f7a22aabd6146677
data/README.md CHANGED
@@ -10,6 +10,8 @@ This theme also utilises [jekyll-seo-tag](https://github.com/jekyll/jekyll-seo-t
10
10
 
11
11
  See this theme in use at [meebuhs.github.io](https://meebuhs.github.io) and check the [source code](https://github.com/meebuhs/meebuhs.github.io) to get yourself started.
12
12
 
13
+ Also check the the usage examples in [this post](https://meebuhs.github.io/projects/arco).
14
+
13
15
  ## Installation
14
16
 
15
17
  Add this line to your Jekyll site's `Gemfile`:
@@ -82,7 +84,6 @@ There are additional parameters which can be set for use with `jekyll-seo-tag`.
82
84
  layout: post
83
85
  title: Post title
84
86
  description: Post description
85
- category: completed | ongoing
86
87
  permalink: /projects/post-title
87
88
  urls:
88
89
  source: https://project.source/link/
@@ -117,10 +118,6 @@ In order to open an image in a fullscreen lightbox on click, you must wrap the i
117
118
  </a>
118
119
  ```
119
120
 
120
- ### Markdown features
121
-
122
- [Check here](https://meebuhs.github.io/projects/arco) for examples of the supported markdown features.
123
-
124
121
  ### Resume support
125
122
 
126
123
  To add a resume to the site, set `resume: true` in your `_config.yml`.
@@ -18,7 +18,7 @@
18
18
  </div>
19
19
  <div class="sidebar-links">
20
20
  {% if site.github_url %}
21
- <a href="{{ site.github_url }}">github</a>
21
+ <a href="{{ site.github_url }}"><img class="github-image" src="/assets/images/GitHub-Mark-Light-64px.png"/>github</a>
22
22
  {% endif %}
23
23
  {% if site.github_url and site.resume %}
24
24
  /
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta charset="UTF-8">
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1">
6
- <link rel="shortcut icon" type="image/png" href="favicon.png?">
6
+ <link rel="shortcut icon" type="image/png" href="/favicon.png">
7
7
  <link rel="stylesheet" href="/assets/css/main.css">
8
8
  </head>
9
9
  <body>
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta charset="UTF-8">
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1">
6
- <link rel="shortcut icon" type="image/png" href="favicon.png?">
6
+ <link rel="shortcut icon" type="image/png" href="/favicon.png">
7
7
  <link rel="stylesheet" href="/assets/css/main.css">
8
8
  <link rel="stylesheet" href="/assets/flexmasonry/flexmasonry.css">
9
9
  <script src="/assets/flexmasonry/flexmasonry.js"></script>
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta charset="UTF-8">
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1">
6
- <link rel="shortcut icon" type="image/png" href="favicon.png?">
6
+ <link rel="shortcut icon" type="image/png" href="/favicon.png">
7
7
  <link rel="stylesheet" href="/assets/css/main.css">
8
8
  {% seo %}
9
9
  </head>
@@ -1,4 +1,4 @@
1
- @media only screen and (orientation: landscape) and (min-width: 900px) {
1
+ @media only screen and (orientation: landscape) and (min-width: 1250px) {
2
2
  .post {
3
3
  max-width: 900px !important;
4
4
  }
@@ -27,6 +27,12 @@
27
27
  color: $hover-colour;
28
28
  }
29
29
 
30
+ .github-image {
31
+ width: 1rem;
32
+ margin-right: .5rem;
33
+ vertical-align: middle;
34
+ }
35
+
30
36
  #sidebar {
31
37
  display: flex;
32
38
  top: 0;
@@ -157,6 +163,10 @@
157
163
  }
158
164
  }
159
165
 
166
+ .sidebar-links {
167
+ margin-top: 1em;
168
+ }
169
+
160
170
  .post-buttons {
161
171
  margin: 0;
162
172
  display: flex;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arco
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - meebuhs
@@ -76,6 +76,7 @@ files:
76
76
  - assets/fonts/roboto-mono/RobotoMono-BoldItalic.ttf
77
77
  - assets/fonts/roboto-mono/RobotoMono-Italic.ttf
78
78
  - assets/fonts/roboto-mono/RobotoMono-Regular.ttf
79
+ - assets/images/GitHub-Mark-Light-64px.png
79
80
  - assets/images/demo.gif
80
81
  - assets/js/fade-transitions.js
81
82
  - assets/js/post-grid-init.js