-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Quynh Nguyen
authored and
Quynh Nguyen
committed
Jan 7, 2019
1 parent
6c1ca63
commit 7604a96
Showing
51 changed files
with
2,012 additions
and
357 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 |
---|---|---|
@@ -1,10 +1,18 @@ | ||
source "https://rubygems.org" | ||
ruby RUBY_VERSION | ||
|
||
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" } | ||
# 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 | ||
# | ||
|
||
# If you have any plugins, put them here! | ||
gem 'wdm', '>= 0.1.0' if Gem.win_platform? | ||
group :jekyll_plugins do | ||
gem 'github-pages' | ||
gem 'jekyll-feed' | ||
gem 'jekyll-paginate' | ||
end | ||
gem 'jekyll-feed' | ||
gem 'jekyll-sitemap' | ||
gem 'jekyll-archives' | ||
gem 'jekyll-paginate' | ||
end |
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,32 +1,47 @@ | ||
# Dependencies | ||
highlighter: rouge | ||
|
||
# Permalinks | ||
permalink: pretty | ||
# Site | ||
name: "whyn4" | ||
description: "A Vietnamese Software Engineer who is really passionate and work in the Singapore, Japan is my wishes." | ||
meta_description: "whyn4 - Quynh Nguyen's Blog" | ||
logo: 'assets/images/logo.png' | ||
favicon: 'assets/images/logo.png' | ||
baseurl: / | ||
google_analytics: '' | ||
disqus: '' | ||
mailchimp-list: '' | ||
|
||
# Setup | ||
title: whyn4 | ||
tagline: 'Quynh Nguyen' | ||
description: 'A Vietnamese Software Engineer who is really passionate and work in the Singapore, Japan is my wishes.' | ||
url: https://quynh-nguyen.github.io | ||
baseurl: / | ||
# Authors | ||
authors: | ||
whyn4: | ||
name: Quynh Nguyen | ||
display_name: Quynh Nguyen | ||
# gravatar: e56154546cf4be74e393c62d1ae9f9d4 | ||
email: [email protected] | ||
web: https://quynh-nguyen.github.io | ||
twitter: https://twitter.com/likeguitarz | ||
description: "A Vietnamese Software Engineer who is really passionate and work in the Singapore, Japan is my wishes." | ||
|
||
author: | ||
name: 'Quynh Nguyen' | ||
url: https://github.com/Quynh-Nguyen | ||
|
||
paginate: 5 | ||
# Pagination | ||
paginate: 6 | ||
paginate_path: /page:num/ | ||
|
||
# Custom vars | ||
version: 1.1.0 | ||
|
||
# Plugins | ||
plugins: | ||
- jekyll-paginate | ||
gems: | ||
- jekyll-paginate | ||
|
||
markdown: kramdown | ||
- jekyll-archives | ||
|
||
# Archives | ||
jekyll-archives: | ||
enabled: | ||
- categories | ||
layout: archive | ||
permalinks: | ||
category: '/category/:name/' | ||
|
||
github: | ||
repo: https://github.com/Quynh-Nguyen/quynh-nguyen.github.io | ||
# Dependencies | ||
markdown: kramdown | ||
highlighter: rouge | ||
|
||
excerpt_separator: <!--more--> |
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,14 @@ | ||
<section class="disqus"> | ||
<div id="disqus_thread"></div> | ||
<script type="text/javascript"> | ||
var disqus_shortname = '{{site.disqus}}'; | ||
var disqus_developer = 0; | ||
(function() { | ||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; | ||
dsq.src = window.location.protocol + '//' + disqus_shortname + '.disqus.com/embed.js'; | ||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); | ||
})(); | ||
</script> | ||
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> | ||
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a> | ||
</section> |
Oops, something went wrong.