Skip to content

Commit 86cae97

Browse files
committed
web pages
1 parent 870a871 commit 86cae97

File tree

10 files changed

+108
-41
lines changed

10 files changed

+108
-41
lines changed

Gemfile

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
source 'https://rubygems.org'
22

33
gemspec
4-

docs/Gemfile

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,12 @@
1-
gem 'jekyll-feed'
2-
gem 'jekyll-seo-tag'
1+
source "https://rubygems.org"
2+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
3+
gem "minima", "~> 2.0"
4+
gem "github-pages", group: :jekyll_plugins
5+
6+
# If you have any plugins, put them here!
7+
group :jekyll_plugins do
8+
gem "jekyll-feed", "~> 0.6"
9+
end
10+
11+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
12+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

docs/_includes/footer.html

+23-6
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,48 @@
55
<h2 class="footer-heading">{{ site.title }}</h2>
66

77
<div class="footer-col-wrapper">
8-
<div class="footer-col footer-col-1">
8+
<div class="footer-col footer-col-1">
99
<ul class="contact-list">
1010
<li>{{ site.title }}</li>
1111
<li><a href="mailto:{{ site.email }}">{{ site.email }}</a></li>
1212
</ul>
1313
</div>
1414

15-
<div class="footer-col footer-col-2">
15+
<div class="footer-col footer-col-2">
1616
<ul class="social-media-list">
1717
{% if site.github_username %}
1818
<li>
19-
{% include icon-github.html username=site.github_username %}
19+
<a href="https://github.com/{{ site.github_username }}">
20+
<span class="icon icon--github">
21+
<svg viewBox="0 0 16 16">
22+
<path fill="#828282" d="M7.999,0.431c-4.285,0-7.76,3.474-7.76,7.761 c0,3.428,2.223,6.337,5.307,7.363c0.388,0.071,0.53-0.168,0.53-0.374c0-0.184-0.007-0.672-0.01-1.32 c-2.159,0.469-2.614-1.04-2.614-1.04c-0.353-0.896-0.862-1.135-0.862-1.135c-0.705-0.481,0.053-0.472,0.053-0.472 c0.779,0.055,1.189,0.8,1.189,0.8c0.692,1.186,1.816,0.843,2.258,0.645c0.071-0.502,0.271-0.843,0.493-1.037 C4.86,11.425,3.049,10.76,3.049,7.786c0-0.847,0.302-1.54,0.799-2.082C3.768,5.507,3.501,4.718,3.924,3.65 c0,0,0.652-0.209,2.134,0.796C6.677,4.273,7.34,4.187,8,4.184c0.659,0.003,1.323,0.089,1.943,0.261 c1.482-1.004,2.132-0.796,2.132-0.796c0.423,1.068,0.157,1.857,0.077,2.054c0.497,0.542,0.798,1.235,0.798,2.082 c0,2.981-1.814,3.637-3.543,3.829c0.279,0.24,0.527,0.713,0.527,1.437c0,1.037-0.01,1.874-0.01,2.129 c0,0.208,0.14,0.449,0.534,0.373c3.081-1.028,5.302-3.935,5.302-7.362C15.76,3.906,12.285,0.431,7.999,0.431z"/>
23+
</svg>
24+
</span>
25+
26+
<span class="username">{{ site.github_username }}</span>
27+
</a>
2028
</li>
2129
{% endif %}
2230

2331
{% if site.twitter_username %}
2432
<li>
25-
{% include icon-twitter.html username=site.twitter_username %}
33+
<a href="https://twitter.com/{{ site.twitter_username }}">
34+
<span class="icon icon--twitter">
35+
<svg viewBox="0 0 16 16">
36+
<path fill="#828282" d="M15.969,3.058c-0.586,0.26-1.217,0.436-1.878,0.515c0.675-0.405,1.194-1.045,1.438-1.809
37+
c-0.632,0.375-1.332,0.647-2.076,0.793c-0.596-0.636-1.446-1.033-2.387-1.033c-1.806,0-3.27,1.464-3.27,3.27 c0,0.256,0.029,0.506,0.085,0.745C5.163,5.404,2.753,4.102,1.14,2.124C0.859,2.607,0.698,3.168,0.698,3.767 c0,1.134,0.577,2.135,1.455,2.722C1.616,6.472,1.112,6.325,0.671,6.08c0,0.014,0,0.027,0,0.041c0,1.584,1.127,2.906,2.623,3.206 C3.02,9.402,2.731,9.442,2.433,9.442c-0.211,0-0.416-0.021-0.615-0.059c0.416,1.299,1.624,2.245,3.055,2.271 c-1.119,0.877-2.529,1.4-4.061,1.4c-0.264,0-0.524-0.015-0.78-0.046c1.447,0.928,3.166,1.469,5.013,1.469 c6.015,0,9.304-4.983,9.304-9.304c0-0.142-0.003-0.283-0.009-0.423C14.976,4.29,15.531,3.714,15.969,3.058z"/>
38+
</svg>
39+
</span>
40+
41+
<span class="username">{{ site.twitter_username }}</span>
42+
</a>
2643
</li>
2744
{% endif %}
2845
</ul>
2946
</div>
3047

31-
<div class="footer-col footer-col-3">
32-
<p>{{ site.description }}</p>
48+
<div class="footer-col footer-col-3">
49+
<p class="text">{{ site.description }}</p>
3350
</div>
3451
</div>
3552

docs/_includes/head.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<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">
5+
{% if page.keywords %}
6+
<meta name="keywords" content="{{ page.keywords }}" />
7+
{% else %}
8+
<meta name="keywords" content="monkstone, JRubyArt, processing, blog, ruby" />
9+
{% endif %}
10+
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
11+
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
12+
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.url }}">
15+
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" />
16+
</head>

docs/_includes/header.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<div class="wrapper">
44

5-
<a class="site-title" href="{{ site.url }}/">{{ site.title }}</a>
5+
<a class="site-title" href="{{ site.github.url }}/">{{ site.title }}</a>
66

77
<nav class="site-nav">
88
<a href="#" class="menu-icon">
@@ -14,9 +14,9 @@
1414
</a>
1515

1616
<div class="trigger">
17-
{% for my_page in site.pages %}
18-
{% if my_page.title %}
19-
<a class="page-link" href="{{ my_page.url | prepend: site.github.url }}">{{ my_page.title }}</a>
17+
{% for page in site.pages %}
18+
{% if page.title %}
19+
<a class="page-link" href="{{ page.url | prepend: site.github.url }}">{{ page.title }}</a>
2020
{% endif %}
2121
{% endfor %}
2222
</div>

docs/_includes/menu.html

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<nav class="menu">
2+
<ul>
3+
<li><a href="#">Products</a></li>
4+
<li><a href="#">Download</a></li>
5+
<li><a href="#">Support</a></li>
6+
<li><a href="#">Buy Now</a></li>
7+
</ul>
8+
</nav>

docs/_includes/navigation.html

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{% capture html %}
2+
<ul>
3+
{% if include.context == "/" %}
4+
<li class="{% if page.url == "/" %}active{% endif %}">
5+
<a href="{{ site.github.url }}/{{ site.title }}"</a>
6+
</li>
7+
{% endif %}
8+
9+
{% assign entries = site.pages | sort: "path" %}
10+
{% for entry in entries %}
11+
12+
{% capture slug %}{{ entry.url | split: "/" | last }}{% endcapture %}
13+
{% capture current %}{{ entry.url | remove: slug | remove: "//" | append: "/" }}{% endcapture %}
14+
15+
{% if current == include.context %}
16+
<li class="{% if page.url contains entry.url %}active{% endif %}">
17+
<a href="{{ site.github.url }}{{ entry.url }}">{{ entry.title }}</a>
18+
{% include navigation.html context=entry.url %}
19+
</li>
20+
{% endif %}
21+
22+
{% endfor %}
23+
</ul>
24+
{% endcapture %}{{ html | strip_newlines | replace:' ','' | replace:' ','' | replace:' ',' ' }}

docs/_includes/top.html

-16
This file was deleted.

docs/_layouts/default.html

+15-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
1-
{% include top.html %}
1+
<!DOCTYPE html>
2+
<html>
23

3-
<body class="wrap">
4-
{% include header.html %}
4+
{% include head.html %}
55

6-
{{ content }}
6+
<body>
77

8-
{% include footer.html %}
8+
{% include header.html %}
9+
10+
<div class="page-content">
11+
<div class="wrapper">
12+
{{ content }}
13+
</div>
14+
</div>
15+
16+
{% include footer.html %}
17+
18+
</body>
919

10-
</body>
1120
</html>

docs/_layouts/post.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
layout: default
33
---
4-
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
4+
<div class="post">
55

66
<header class="post-header">
7-
<h1 class="post-title" itemprop="name headline">{{ page.title }}</h1>
8-
<p class="post-meta"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time>{% if page.author %} • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ page.author }}</span></span>{% endif %}</p>
7+
<h1 class="post-title">{{ page.title }}</h1>
8+
<p class="post-meta">{{ page.date | date: "%b %-d, %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}</p>
99
</header>
1010

11-
<div class="post-content" itemprop="articleBody">
11+
<article class="post-content">
1212
{{ content }}
13-
</div>
13+
</article>
1414

15-
</article>
15+
</div>

0 commit comments

Comments
 (0)