arco 0.3.2 → 0.4.0

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: 19a6bad6d5748ed8450e9e5a67e2388b8ab16772d4113d205be2ff0362e87b02
4
- data.tar.gz: 51b3424d79acaab9f13b6781bc597c326e12d60d1e880a8d5530c1178dfd5819
3
+ metadata.gz: 99f7f5507af4c5dfc8556e03a348ef13e6ade77c4a2bd3d1809511b4a60f54b0
4
+ data.tar.gz: 152d1a32a4df721048c32502c28c0898d104dee448fce9ce8ab5a1b366d219a5
5
5
  SHA512:
6
- metadata.gz: 7d2e97ed7ca7c520a0605a702d2519320320273b29ccfbafa6e3467b491a54ac3572f5395b23d32cc0c9b1ca245a2f5dab52918ad31fda0ec6451e9d87569133
7
- data.tar.gz: 202abafe3a29f602f40f8ec23b38c6f427f02def7ba7a05ee100c4aa6d3f240bf0cf11dac31856e6baac25bad7823378fb3169d5cea7ec792f612e8708946e0e
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: Site title
58
- description: Site description
59
- image: /assets/image.png
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
- summary: Post summary
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
- top-image: /assets/image-for-top-of-post.png
84
+ image: /assets/image-for-top-of-post.png
75
85
  mathjax: true | false
76
86
  ---
77
87
  ```
@@ -1,7 +1,16 @@
1
- title: sitetitle
2
- description: sitedescription
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
- highlighter: rouge
14
+ plugins:
15
+ - jekyll-seo-tag
16
+ - jekyll-sitemap
@@ -5,6 +5,7 @@
5
5
  <link rel="stylesheet" href="/assets/css/main.css">
6
6
  <link rel="stylesheet" href="/assets/flexmasonry/flexmasonry.css">
7
7
  <script src="/assets/flexmasonry/flexmasonry.js"></script>
8
+ {% seo %}
8
9
  </head>
9
10
  <body>
10
11
  {% include sidebar.html %}
@@ -3,6 +3,7 @@
3
3
  <head>
4
4
  <meta charset="UTF-8">
5
5
  <link rel="stylesheet" href="/assets/css/main.css">
6
+ {% seo %}
6
7
  </head>
7
8
  <body>
8
9
  {% include cover.html %}
@@ -2,18 +2,21 @@
2
2
  layout: default
3
3
  ---
4
4
 
5
- {% include mathjax.html %}
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
  &middot;
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.top-image }}" />
19
+ <img class="post-image" src="{{ page.image }}" />
17
20
 
18
21
  <div class="post-content">
19
22
  {{ content }}
@@ -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.3.2
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-06-29 00:00:00.000000000 Z
11
+ date: 2020-07-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll