jekyll-theme-caligraphy 0.1.2 → 0.1.3
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 +5 -5
- data/404.html +3 -2
- data/README.md +1 -1
- data/_includes/footer.html +1 -2
- data/_includes/head.html +11 -4
- data/_includes/header.html +2 -3
- data/_layouts/404.html +18 -0
- data/assets/stylesheets/style.css +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 38cf54988a8870496107301d2b4e1c38a472721c3f92ade64e9255c3ddd7158d
|
|
4
|
+
data.tar.gz: fdec000942da0769465f00de3c4fbc47e6a3a9a4271c08ec3adb33f6ca67ea6d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 87c2f019d119b4427aec853c43e4af23cccc3f9f9ea09fc21648c541a3daac166a91399a631fa18b5837c453cdd54c99f392eaa2aea3e02af097dee12fa5d56d
|
|
7
|
+
data.tar.gz: ab85c58be9eb79fac707c029d83256935e492e90fd1b0c836422aba3542edf1134894b12284d9e1a0c148282f13772f3bff6e73c216d72c08da4ae517c838116
|
data/404.html
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
---
|
|
2
2
|
permalink: /404.html
|
|
3
|
+
layout: 404
|
|
3
4
|
---
|
|
4
5
|
|
|
5
6
|
<html>
|
|
6
7
|
<head>
|
|
7
8
|
<meta content='Scribble' property='og:title' />
|
|
8
9
|
<title>Scribble</title>
|
|
9
|
-
<link href='{{ site.url }}/images/fav.png' rel='shortcut icon'>
|
|
10
|
-
<link rel="stylesheet" href="{{ site.url }}/stylesheets/style.css"/>
|
|
10
|
+
<link href='{{ site.url }}/assets/images/fav.png' rel='shortcut icon'>
|
|
11
|
+
<link rel="stylesheet" href="{{ site.url }}/assets/stylesheets/style.css"/>
|
|
11
12
|
<meta content='width=device-width, initial-scale=1.0, user-scalable=no' name='viewport'>
|
|
12
13
|
<meta content='text/html; charset=utf-8' http-equiv='content-type' />
|
|
13
14
|
<meta content='{{ site.url }}' property='og:url' />
|
data/README.md
CHANGED
|
@@ -11,7 +11,7 @@ with some additional features mostly inspired by [Hydeout](https://github.com/fo
|
|
|
11
11
|
|
|
12
12
|
1. [Fork the repository](https://github.com/oxddr/caligraphy/fork)
|
|
13
13
|
|
|
14
|
-
2. Clone the repository: `git clone https://github.com/username/
|
|
14
|
+
2. Clone the repository: `git clone https://github.com/username/caligraphy`
|
|
15
15
|
|
|
16
16
|
3. Run `bundle install`
|
|
17
17
|
|
data/_includes/footer.html
CHANGED
data/_includes/head.html
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
<head>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
{% if page.title %}
|
|
3
|
+
<title>{{ page.title }} - {{ site.title }}</title>
|
|
4
|
+
<meta content='{{ page.title }} - {{ site.title }}' name='title' />
|
|
5
|
+
<meta content='{{ page.title }} - {{ site.title }}' name='og:title' />
|
|
6
|
+
{% else %}
|
|
7
|
+
<title>{{ site.title }}</title>
|
|
8
|
+
<meta content='{{ site.title }}' name='title' />
|
|
9
|
+
<meta content='{{ site.title }}' name='og:title' />
|
|
10
|
+
{% endif %}
|
|
5
11
|
|
|
6
12
|
<link href='{{ site.url }}/assets/images/fav.png' rel='shortcut icon'>
|
|
7
13
|
<link href='{{ site.url }}/assets/stylesheets/style.css' rel='stylesheet' type='text/css' />
|
|
@@ -11,7 +17,8 @@
|
|
|
11
17
|
<meta content='text/html; charset=utf-8' http-equiv='content-type' />
|
|
12
18
|
{% if page.date %}
|
|
13
19
|
<meta content='{{ site.url }}{{ page.url }}' property='og:url' />
|
|
14
|
-
<meta content="{{ page.content | strip_html | strip_newlines | truncate: 120 }}"
|
|
20
|
+
<meta content="{{ page.content | strip_html | strip_newlines | truncate: 120 }}"
|
|
21
|
+
property='og:description' />
|
|
15
22
|
<meta content="article" property="og:type" />
|
|
16
23
|
{% else %}
|
|
17
24
|
<meta content='{{ site.url }}' property='og:url' />
|
data/_includes/header.html
CHANGED
data/_layouts/404.html
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<html>
|
|
2
|
+
<head>
|
|
3
|
+
<meta content='{{ site.title }}' property='og:title' />
|
|
4
|
+
<title>{{ site.title }}</title>
|
|
5
|
+
<link href='{{ site.url }}/assets/images/fav.png' rel='shortcut icon'>
|
|
6
|
+
<link rel="stylesheet" href="{{ site.url }}/assets/stylesheets/style.css"/>
|
|
7
|
+
<meta content='width=device-width, initial-scale=1.0, user-scalable=no' name='viewport'>
|
|
8
|
+
<meta content='text/html; charset=utf-8' http-equiv='content-type' />
|
|
9
|
+
<meta content='{{ site.url }}' property='og:url' />
|
|
10
|
+
<meta content="{{ site.description }}" property='og:description' />
|
|
11
|
+
<meta content="blog" property="og:type" />
|
|
12
|
+
</head>
|
|
13
|
+
<body class="lh-copy dark-gray ph3 pv5 f6 sans-serif tc bg-super-white">
|
|
14
|
+
<img src="{{ site.url }}/assets/images/404.png" alt="not found" width="160" class="mb3" /><br>
|
|
15
|
+
<a href="{{ site.url }}" class="link blue hover-gray">Home</a>
|
|
16
|
+
</div>
|
|
17
|
+
</body>
|
|
18
|
+
</html>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
.bg-super-white { background: #f9f9f9; }
|
|
4
4
|
.top-50 { top: 50% }
|
|
5
|
-
.link:hover { background: url(/images/line.png) repeat-x left bottom; }
|
|
5
|
+
.link:hover { background: url(/assets/images/line.png) repeat-x left bottom; }
|
|
6
6
|
|
|
7
7
|
/* Markdown styles */
|
|
8
8
|
.markdown-body a {
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-caligraphy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- oxddr
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-03-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -83,6 +83,7 @@ files:
|
|
|
83
83
|
- _includes/nav_bar.html
|
|
84
84
|
- _includes/pagination.html
|
|
85
85
|
- _includes/signoff.html
|
|
86
|
+
- _layouts/404.html
|
|
86
87
|
- _layouts/default.html
|
|
87
88
|
- _layouts/index.html
|
|
88
89
|
- _layouts/page.html
|
|
@@ -121,7 +122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
121
122
|
version: '0'
|
|
122
123
|
requirements: []
|
|
123
124
|
rubyforge_project:
|
|
124
|
-
rubygems_version: 2.6
|
|
125
|
+
rubygems_version: 2.7.6
|
|
125
126
|
signing_key:
|
|
126
127
|
specification_version: 4
|
|
127
128
|
summary: Simple Jekyll theme based on Scribble
|