Skip to content

Commit 47c886c

Browse files
committed
Add Gemfile.|
1 parent b9018bb commit 47c886c

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

Gemfile

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
source "https://rubygems.org"
2+
3+
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4+
5+
gem 'jekyll'
6+
7+
group :jekyll_plugins do
8+
gem 'github-pages'
9+
gem 'jekyll-remote-theme'
10+
gem 'jekyll-include-cache'
11+
gem 'webrick'
12+
end
13+
14+
# gem "rails"
15+

_config.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,13 @@ ghub:
1010
edit: true
1111
repository: gpy_examples
1212

13-
permalink: "/:categories/:title.html"
14-
1513
author:
1614
name: Neil D. Lawrence
1715

16+
collections:
17+
examples:
18+
output: true
19+
1820
display:
1921
copy_button:
2022
bibtex: true
File renamed without changes.

index.html

+4-2
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,17 @@
1212
<input type="search" name="filter-titles" id="search-titles" value />
1313
</div>
1414

15-
{% for post in site.posts %}
16-
15+
<p>Wow!</p>
16+
{% for post in site.examples %}
17+
<b>Cat</b>
1718
{% if forloop.first %}
1819
<h2>Examples}</h2>
1920
<ul>
2021
{% endif %}
2122
{% include listpaper.html %}
2223
{% if forloop.last %}
2324
</ul>
25+
{% endif %}
2426
{% endfor %}
2527

2628
<p class="rss-subscribe">subscribe <a href="{{ "/assets/rss/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>

0 commit comments

Comments
 (0)