-
Notifications
You must be signed in to change notification settings - Fork 672
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #90 from LeNPaul/gem-theme
Gem theme
- Loading branch information
Showing
68 changed files
with
550 additions
and
1,966 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ Gemfile.lock | |
.sass-cache | ||
.jekyll-metadata | ||
.DS_Store | ||
.jekyll-cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,2 @@ | ||
# source "https://rubygems.org" | ||
|
||
# Hello! This is where you manage which Jekyll version is used to run. | ||
# When you want to use a different version, change it below, save the | ||
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so: | ||
# | ||
# bundle exec jekyll serve | ||
# | ||
# This will help ensure the proper Jekyll version is running. | ||
# Happy Jekylling! | ||
gem "jekyll", "~> 3.6.2" | ||
|
||
# This is the default theme for new Jekyll sites. You may change this to anything you like. | ||
# gem "minima", "~> 2.0" | ||
|
||
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and | ||
# uncomment the line below. To upgrade, run `bundle update github-pages`. | ||
# gem "github-pages", group: :jekyll_plugins | ||
|
||
# If you have any plugins, put them here! | ||
group :jekyll_plugins do | ||
gem "jekyll-feed", "~> 0.6" | ||
end | ||
|
||
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] | ||
gem 'jekyll-paginate' | ||
gem 'jekyll-sitemap' | ||
gem 'jekyll-seo-tag' | ||
source "https://rubygems.org" | ||
gemspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
# Change 'comments' to true for Disqus comments | ||
disqus: | ||
comments: false | ||
disqus_shortname: '' | ||
disqus_shortname: 'https-lenpaul-github-io-lagrange' | ||
|
||
# If you are not using Google Analytics, please change 'google-ID' to an empty string | ||
google-ID: '' | ||
google-ID: 'UA-112060364-1' | ||
|
||
menu: | ||
- {name: 'About', path: 'menu', url: 'about.html'} | ||
- {name: 'Writing', path: 'menu', url: 'writing.html'} | ||
- {name: 'Contact', path: 'menu', url: 'contact.html'} | ||
- {name: 'About', url: 'about.html'} | ||
- {name: 'Writing', url: 'writing.html'} | ||
- {name: 'Contact', url: 'contact.html'} | ||
|
||
# Available social icons are powered by Font Awesome, so you can use any icon that they offer | ||
social: | ||
- {icon: 'github', link: ''} | ||
- {icon: 'twitter', link: ''} | ||
- {icon: 'linkedin', link: ''} | ||
- {icon: 'envelope', link: 'mailto:'} | ||
- {icon: 'github', link: 'https://www.github.com/lenpaul'} | ||
- {icon: 'twitter', link: 'https://twitter.com/paululele'} | ||
- {icon: 'linkedin', link: 'http://www.linkedin.com/in/lenpaul/'} | ||
- {icon: 'envelope', link: 'mailto:[email protected]'} | ||
- {icon: 'rss-square', link: '/feed.xml'} | ||
# - {icon: 'rss-square', link: '/rss-feed.xml'} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<footer class="footer"> | ||
{% include social-icons.html %} | ||
<div class="post-date"><a href="{{ site.github.url }}/menu/about.html">{{ site.title }} | {{ site.description }} by {{ site.author }}</a></div> | ||
</footer> | ||
<div class="footer-description"><a href="{{ site.github.url }}/">{{ site.title }} | {{ site.description }} by {{ site.author }}</a></div> | ||
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<header class="masthead"> | ||
<h3 class="masthead-title"> | ||
<header class="header"> | ||
<h3 class="header-title"> | ||
<a href="{{ site.github.url }}/">{{ site.title }}</a> | ||
<small class="masthead-subtitle">{{ site.description }}</small> | ||
<small class="header-subtitle">{{ site.description }}</small> | ||
{% include menu.html %} | ||
</h3> | ||
</header> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,13 @@ | ||
<!doctype html> | ||
<html> | ||
|
||
{% include head.html %} | ||
|
||
<body> | ||
|
||
<div class="container"> | ||
{% include header.html %} | ||
|
||
<div class="post-container"> | ||
{{ content }} | ||
{% include head.html %} | ||
<body> | ||
<div class="container"> | ||
{% include header.html %} | ||
<div class="content-container"> | ||
{{ content }} | ||
</div> | ||
{% include footer.html %} | ||
</div> | ||
|
||
{% include footer.html %} | ||
|
||
</div> | ||
|
||
</body> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,5 +5,6 @@ | |
<h1> | ||
{{ page.title }} | ||
</h1> | ||
|
||
{{ content }} | ||
<article> | ||
{{ content }} | ||
</article> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
@import "base", | ||
"code", | ||
"default", | ||
"home", | ||
"post", | ||
"social-icons" |
Oops, something went wrong.