Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
source 'https://rubygems.org'

gem 'jekyll', '3.0.2'
gem 'jekyll-gist'
gem 'jekyll-paginate'

group :jekyll_plugins do
gem 'jekyll-gist'
gem 'jekyll-paginate'
gem "jekyll-asciidoc"
end

gem 'asciidoctor', '~> 1.5.4'
gem 'coderay', '1.1.1'

42 changes: 25 additions & 17 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
GEM
remote: https://rubygems.org/
specs:
addressable (2.3.8)
addressable (2.4.0)
asciidoctor (1.5.4)
coderay (1.1.1)
colorator (0.1)
faraday (0.9.2)
multipart-post (>= 1.2, < 3)
ffi (1.9.10)
ffi (1.9.14-x64-mingw32)
jekyll (3.0.2)
colorator (~> 0.1)
jekyll-sass-converter (~> 1.0)
Expand All @@ -15,39 +17,45 @@ GEM
mercenary (~> 0.3.3)
rouge (~> 1.7)
safe_yaml (~> 1.0)
jekyll-asciidoc (2.0.1)
asciidoctor (>= 1.5.0)
jekyll (>= 2.3.0)
jekyll-gist (1.4.0)
octokit (~> 4.2)
jekyll-paginate (1.1.0)
jekyll-sass-converter (1.4.0)
sass (~> 3.4)
jekyll-watch (1.3.1)
listen (~> 3.0)
kramdown (1.9.0)
jekyll-watch (1.5.0)
listen (~> 3.0, < 3.1)
kramdown (1.11.1)
liquid (3.0.6)
listen (3.0.5)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
mercenary (0.3.5)
listen (3.0.8)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
mercenary (0.3.6)
multipart-post (2.0.0)
octokit (4.2.0)
sawyer (~> 0.6.0, >= 0.5.3)
octokit (4.3.0)
sawyer (~> 0.7.0, >= 0.5.3)
rb-fsevent (0.9.7)
rb-inotify (0.9.7)
ffi (>= 0.5.0)
rouge (1.10.1)
rouge (1.11.1)
safe_yaml (1.0.4)
sass (3.4.21)
sawyer (0.6.0)
addressable (~> 2.3.5)
sass (3.4.22)
sawyer (0.7.0)
addressable (>= 2.3.5, < 2.5)
faraday (~> 0.8, < 0.10)

PLATFORMS
ruby
x64-mingw32

DEPENDENCIES
asciidoctor (~> 1.5.4)
coderay (= 1.1.1)
jekyll (= 3.0.2)
jekyll-asciidoc
jekyll-gist
jekyll-paginate

BUNDLED WITH
1.10.6
1.12.5
30 changes: 25 additions & 5 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ urlimg: 'https://phlow.github.io/feeling-responsive/images/'
# Logo size is 600x80 pixels
logo: "logo.png"

# Gems
gems:
- jekyll-asciidoc
- jekyll-gist
- jekyll-paginate


# ____ _ __ _
# / __ \____ _____ _(_)___ ____ _/ /_(_)___ ____
Expand All @@ -52,15 +58,10 @@ logo: "logo.png"
# /_/ \__,_/\__, /_/_/ /_/\__,_/\__/_/\____/_/ /_/
# /____/
#
gems:
- jekyll-gist
- jekyll-paginate
paginate: 5 # Paginates all X entries
paginate_path: "blog/page:num" # Pagination path › Important for blog page in /blog/ to work




# Theme works best with Kramdown (using the table of contents function)
markdown: kramdown
permalink: /:categories/:title/
Expand Down Expand Up @@ -245,3 +246,22 @@ google_analytics_tracking_id: UA-60112281-1
# used in _includes/footer_scripts

# tawkto_embed_uri:


# ___ _ __ __
# / | __________(_)___/ /___ _____/ /_____ _____
# / /| | / ___/ ___/ / __ / __ \/ ___/ __/ __ \/ ___/
# / ___ |(__ ) /__/ / /_/ / /_/ / /__/ /_/ /_/ / /
# /_/ |_/____/\___/_/\__,_/\____/\___/\__/\____/_/
#
# https://github.com/asciidoctor/jekyll-asciidoc
# https://github.com/asciidoctor
#

asciidoctor:
attributes:
source-highlighter: coderay
coderay-css: style
icons: font


11 changes: 9 additions & 2 deletions _includes/_head.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,15 @@
{% endcapture %}<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title }}</title>
<link rel="stylesheet" type="text/css" href="{{ url }}/assets/css/styles_feeling_responsive.css">
<script src="{{ url }}/assets/js/modernizr.min.js"></script>

{% if site.asciidoctor %}
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="{{ url }}/assets/css/styles_feeling_responsive_asciidoc.css">
{% else %}
<link rel="stylesheet" type="text/css" href="{{ url }}/assets/css/styles_feeling_responsive.css">
{% endif %}

<script src="{{ url }}/assets/js/modernizr.min.js"></script>

<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.5.18/webfont.js"></script>
<script>
Expand Down
Loading