Skip to content

Commit 0750f61

Browse files
committed
initial commit
0 parents  commit 0750f61

8 files changed

Lines changed: 174 additions & 0 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
_site
2+
.sass-cache
3+
.jekyll-metadata

Gemfile

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
source "https://rubygems.org"
2+
ruby RUBY_VERSION
3+
4+
# Hello! This is where you manage which Jekyll version is used to run.
5+
# When you want to use a different version, change it below, save the
6+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
7+
#
8+
# bundle exec jekyll serve
9+
#
10+
# This will help ensure the proper Jekyll version is running.
11+
# Happy Jekylling!
12+
gem "jekyll", "3.4.3"
13+
14+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
15+
gem "minima", "~> 2.0"
16+
17+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
18+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
19+
# gem "github-pages", group: :jekyll_plugins
20+
21+
# If you have any plugins, put them here!
22+
group :jekyll_plugins do
23+
gem "jekyll-feed", "~> 0.6"
24+
end
25+
26+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
27+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
28+

Gemfile.lock

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.5.2)
5+
public_suffix (>= 2.0.2, < 4.0)
6+
colorator (1.1.0)
7+
ffi (1.9.18)
8+
forwardable-extended (2.6.0)
9+
jekyll (3.4.3)
10+
addressable (~> 2.4)
11+
colorator (~> 1.0)
12+
jekyll-sass-converter (~> 1.0)
13+
jekyll-watch (~> 1.1)
14+
kramdown (~> 1.3)
15+
liquid (~> 3.0)
16+
mercenary (~> 0.3.3)
17+
pathutil (~> 0.9)
18+
rouge (~> 1.7)
19+
safe_yaml (~> 1.0)
20+
jekyll-feed (0.9.2)
21+
jekyll (~> 3.3)
22+
jekyll-sass-converter (1.5.1)
23+
sass (~> 3.4)
24+
jekyll-watch (1.5.1)
25+
listen (~> 3.0)
26+
kramdown (1.16.2)
27+
liquid (3.0.6)
28+
listen (3.1.5)
29+
rb-fsevent (~> 0.9, >= 0.9.4)
30+
rb-inotify (~> 0.9, >= 0.9.7)
31+
ruby_dep (~> 1.2)
32+
mercenary (0.3.6)
33+
minima (2.1.1)
34+
jekyll (~> 3.3)
35+
pathutil (0.16.1)
36+
forwardable-extended (~> 2.6)
37+
public_suffix (3.0.1)
38+
rb-fsevent (0.10.2)
39+
rb-inotify (0.9.10)
40+
ffi (>= 0.5.0, < 2)
41+
rouge (1.11.1)
42+
ruby_dep (1.5.0)
43+
safe_yaml (1.0.4)
44+
sass (3.5.5)
45+
sass-listen (~> 4.0.0)
46+
sass-listen (4.0.0)
47+
rb-fsevent (~> 0.9, >= 0.9.4)
48+
rb-inotify (~> 0.9, >= 0.9.7)
49+
50+
PLATFORMS
51+
ruby
52+
53+
DEPENDENCIES
54+
jekyll (= 3.4.3)
55+
jekyll-feed (~> 0.6)
56+
minima (~> 2.0)
57+
tzinfo-data
58+
59+
RUBY VERSION
60+
ruby 2.3.4p301
61+
62+
BUNDLED WITH
63+
1.16.0

_config.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Welcome to Jekyll!
2+
#
3+
# This config file is meant for settings that affect your whole blog, values
4+
# which you are expected to set up once and rarely edit after that. If you find
5+
# yourself editing this file very often, consider using Jekyll's data files
6+
# feature for the data you need to update frequently.
7+
#
8+
# For technical reasons, this file is *NOT* reloaded automatically when you use
9+
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
10+
11+
# Site settings
12+
# These are used to personalize your new site. If you look in the HTML files,
13+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
14+
# You can create any custom variable you would like, and they will be accessible
15+
# in the templates via {{ site.myvariable }}.
16+
title: OpenIndexMaps
17+
# email: your-email@domain.com
18+
description: > # this means to ignore newlines until "baseurl:"
19+
baseurl: "" # the subpath of your site, e.g. /blog
20+
url: "https://openindexmaps.com" # the base hostname & protocol for your site, e.g. http://example.com
21+
22+
# Build settings
23+
markdown: kramdown
24+
gems:
25+
- jekyll-feed
26+
exclude:
27+
- Gemfile
28+
- Gemfile.lock

_layouts/default.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
3+
4+
<body>
5+
6+
<main class="page-content" aria-label="Content">
7+
<div class="wrapper">
8+
{{ content }}
9+
</div>
10+
</main>
11+
12+
</body>
13+
14+
</html>

_layouts/home.html

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
layout: default
3+
---
4+
5+
<div class="home">
6+
{% if page.title %}
7+
<h1 class="page-heading">{{ page.title }}</h1>
8+
{% endif %}
9+
10+
{{ content }}
11+
12+
{% if site.posts.size > 0 %}
13+
<h2 class="post-list-heading">{{ page.list_title | default: "Posts" }}</h2>
14+
<ul class="post-list">
15+
{% for post in site.posts %}
16+
<li>
17+
{% assign date_format = site.minima.date_format | default: "%b %-d, %Y" %}
18+
<span class="post-meta">{{ post.date | date: date_format }}</span>
19+
20+
<h3>
21+
<a class="post-link" href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
22+
</h3>
23+
</li>
24+
{% endfor %}
25+
</ul>
26+
27+
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | relative_url }}">via RSS</a></p>
28+
{% endif %}
29+
30+
</div>

_posts/.keep

Whitespace-only changes.

index.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
# You don't need to edit this file, it's empty on purpose.
3+
# Edit theme's home layout instead if you wanna make some changes
4+
# See: https://jekyllrb.com/docs/themes/#overriding-theme-defaults
5+
layout: home
6+
---
7+
8+
OpenIndexMaps is a community and format for sharing [index maps](https://en.wikipedia.org/wiki/Index_map).

0 commit comments

Comments
 (0)