Skip to content

Commit 7b2a624

Browse files
committed
fix?
1 parent 0275865 commit 7b2a624

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

docs/Gemfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
source 'https://rubygems.org'
2-
gem 'github-pages', group :jekyll_plugins
1+
source :rubygems
2+
3+
gem "github-pages"

docs/_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Site settings
22
port: 4000
3-
title: Geomerative gem for JRubyArt
3+
title: Geomerative gem for JRubyArt and propane
44
55
description: > # this means to ignore newlines until "baseurl:"
66
The geomerative gem is wrapper around the geomerative library by Ricard
77
Marxer, that makes it very easy to use with JRubyArt. Do fancy things with
88
text, like rotating words, huge font, dissolving font etc.
99
baseurl: "" # the subpath of your site, e.g. /blog
1010
regenerate: true
11-
url: https://ruby-processing.github.io/geomerativegem
11+
url: "https://ruby-processing.github.io/geomerativegem"
1212

1313
urls:
1414
bugs: https://github.com/ruby-processing/geomerativegem/issues

docs/_includes/head.html

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
<head>
2-
<meta charset="utf-8">
3-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
4-
<meta name="viewport" content="width=device-width, initial-scale=1">
2+
<meta charset="utf-8">
3+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
4+
<meta name="viewport" content="width=device-width, initial-scale=1">
5+
{% if page.keywords %}
6+
<meta name="keywords" content="{{ page.keywords }}" />
7+
{% else %}
8+
<meta name="keywords" content="art, JRubyArt, code, blog, ruby" />
9+
{% endif %}<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
10+
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
511

6-
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
7-
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
8-
{% if page.keywords %}
9-
<meta name="keywords" content="{{ page.keywords }}" />
10-
{% else %}
11-
<meta name="keywords" content="jruby, JRubyArt, processing, geomerative, typography" />
12-
{% endif %}
13-
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
14-
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.github.url }}">
15-
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.github.url }}">
16-
</head>
12+
<link rel="stylesheet" href="https://ruby-processing.github.io/JRubyArt/css/main.css"/>
13+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.github.url | prepend: site.url }}">
14+
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.github.url | prepend: site.url }}" />
15+
</head>

docs/feed.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ layout: null
66
<channel>
77
<title>{{ site.title | xml_escape }}</title>
88
<description>{{ site.description | xml_escape }}</description>
9-
<link>{{ site.url }}{{ site.baseurl }}/</link>
9+
<link>{{ site.github.url }}{{ site.baseurl }}/</link>
1010
<atom:link href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.github.url }}" rel="self" type="application/rss+xml"/>
1111
<pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
1212
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>

0 commit comments

Comments
 (0)