arco 0.3.2 → 0.4.0
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 +16 -6
- data/_config.yml +12 -3
- data/_layouts/default.html +1 -0
- data/_layouts/landing.html +1 -0
- data/_layouts/post.html +5 -2
- data/_sass/post.scss +6 -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: 99f7f5507af4c5dfc8556e03a348ef13e6ade77c4a2bd3d1809511b4a60f54b0
|
|
4
|
+
data.tar.gz: 152d1a32a4df721048c32502c28c0898d104dee448fce9ce8ab5a1b366d219a5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8e3718a5bbf4c1f231218ddfb82e53bc4ffadc8773aabbb69b209c8893a23b09d53763faebca9d39159653ad179c63a4565654fa2eed1efc9e0191eda8c71e64
|
|
7
|
+
data.tar.gz: 27fe3ae0303cc409c4e0a133be2c00d4b50a7ca6fdb61b4449e7a9d12d8ff0fd8adbfd01652292bf1d79d1f3fe41a4ad03dc70a11928face236aae36c20777c4
|
data/README.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# arco
|
|
2
2
|
|
|
3
|
-
Arco is a responsive fixed-sidebar layout with a two column masonry grid which also features a landing page, a 404 page and a simple permalink structure.
|
|
3
|
+
Arco is a responsive fixed-sidebar layout with a two column masonry grid which also features a landing page, a 404 page, smooth page transitions and a simple permalink structure.
|
|
4
|
+
|
|
5
|
+
This theme also utilises [jekyll-seo-tag](https://github.com/jekyll/jekyll-seo-tag) and [jekyll-sitemap](https://github.com/jekyll/jekyll-sitemap) to ensure your work will be seen.
|
|
6
|
+
|
|
7
|
+
See this theme in use at [meebuhs.github.io](https://meebuhs.github.io) and check the [https://github.com/meebuhs/meebuhs.github.io](source code) to get yourself started.
|
|
4
8
|
|
|
5
9
|
## Installation
|
|
6
10
|
|
|
@@ -54,24 +58,30 @@ By default it features a landing page, if you would like to bypass the landing p
|
|
|
54
58
|
The following settings can be configured in your site's `_config.yml`
|
|
55
59
|
|
|
56
60
|
```yaml
|
|
57
|
-
title:
|
|
58
|
-
|
|
59
|
-
|
|
61
|
+
title: site-title
|
|
62
|
+
tagline: site-tagline
|
|
63
|
+
description: site-description
|
|
64
|
+
image: /assets/images/image.png
|
|
65
|
+
url: https://github.com/meebuhs/arco
|
|
60
66
|
github_url: https://github.com/meebuhs
|
|
61
67
|
resume: true | false
|
|
68
|
+
author: Alex Sharpe
|
|
69
|
+
lang: en-AU
|
|
62
70
|
```
|
|
63
71
|
|
|
72
|
+
There are additional parameters which can be set for use with `jekyll-seo-tag`. [See here for a complete list](https://github.com/jekyll/jekyll-seo-tag/blob/master/docs/usage.md)
|
|
73
|
+
|
|
64
74
|
### Expected post frontmatter
|
|
65
75
|
|
|
66
76
|
```
|
|
67
77
|
---
|
|
68
78
|
layout: post
|
|
69
79
|
title: Post title
|
|
70
|
-
|
|
80
|
+
description: Post description
|
|
71
81
|
category: completed | ongoing
|
|
72
82
|
permalink: /projects/post-title
|
|
73
83
|
cover-image: /assets/image-for-front-page.png
|
|
74
|
-
|
|
84
|
+
image: /assets/image-for-top-of-post.png
|
|
75
85
|
mathjax: true | false
|
|
76
86
|
---
|
|
77
87
|
```
|
data/_config.yml
CHANGED
|
@@ -1,7 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
# Site settings
|
|
2
|
+
title: site-title
|
|
3
|
+
tagline: site-tagline
|
|
4
|
+
description: site-description
|
|
3
5
|
image: /assets/images/image.png
|
|
6
|
+
url: https://github.com/meebuhs/arco
|
|
4
7
|
github_url: https://github.com/meebuhs
|
|
5
8
|
resume: true
|
|
9
|
+
author: Alex Sharpe
|
|
10
|
+
lang: en-AU
|
|
11
|
+
|
|
12
|
+
# Build settings
|
|
6
13
|
theme: arco
|
|
7
|
-
|
|
14
|
+
plugins:
|
|
15
|
+
- jekyll-seo-tag
|
|
16
|
+
- jekyll-sitemap
|
data/_layouts/default.html
CHANGED
data/_layouts/landing.html
CHANGED
data/_layouts/post.html
CHANGED
|
@@ -2,18 +2,21 @@
|
|
|
2
2
|
layout: default
|
|
3
3
|
---
|
|
4
4
|
|
|
5
|
-
{%
|
|
5
|
+
{% if page.mathjax %}
|
|
6
|
+
{% include mathjax.html %}
|
|
7
|
+
{% endif %}
|
|
6
8
|
|
|
7
9
|
<section class="content">
|
|
8
10
|
<svg id="content-fader"></svg>
|
|
9
11
|
<div class="post">
|
|
10
12
|
<div class="post-title"><h1>{{ page.title }}</h1></div>
|
|
13
|
+
<div class="post-description">{{ page.description }}</div>
|
|
11
14
|
<div class="post-header">
|
|
12
15
|
<span class="post-date">{{ page.date | date_to_string}}</span>
|
|
13
16
|
·
|
|
14
17
|
<a href="{{ "/projects/" }}{{ page.category }}" class="fade-onclick"><span class="post-category">{{ page.category }}</span></a>
|
|
15
18
|
</div>
|
|
16
|
-
<img class="post-image" src="{{ page.
|
|
19
|
+
<img class="post-image" src="{{ page.image }}" />
|
|
17
20
|
|
|
18
21
|
<div class="post-content">
|
|
19
22
|
{{ content }}
|
data/_sass/post.scss
CHANGED
|
@@ -3,10 +3,14 @@
|
|
|
3
3
|
width: 100%;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
-
.post-title h1{
|
|
6
|
+
.post-title h1 {
|
|
7
7
|
margin-bottom: 0;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
+
.post-description {
|
|
11
|
+
margin-bottom: 0.5em;
|
|
12
|
+
}
|
|
13
|
+
|
|
10
14
|
.post-date {
|
|
11
15
|
color: $secondary-highlight;
|
|
12
16
|
font-weight: bold;
|
|
@@ -34,4 +38,5 @@
|
|
|
34
38
|
max-height: 600px;
|
|
35
39
|
display: block;
|
|
36
40
|
margin: 0 auto;
|
|
41
|
+
border-radius: 5px;
|
|
37
42
|
}
|
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.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- meebuhs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-07-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|