Skip to content

Commit

Permalink
Merge branch 'gh-pages' into pagv2
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiokopplin committed Jan 21, 2020
2 parents b06cda7 + e0d9d7e commit 1f19f2a
Show file tree
Hide file tree
Showing 19 changed files with 80 additions and 179 deletions.
1 change: 1 addition & 0 deletions FAQ.md
@@ -1,6 +1,7 @@
# FAQ:

- Article: How to Install Jekyll - by [Arti Annaswamy](https://github.com/aannasw). [Part 1](http://artiannaswamy.com/build-a-github-blog-part-1) and [Part 2](http://artiannaswamy.com/build-a-github-blog-part-2)
- [How to build and run a Jekyll site in a Docker container](https://mehmandarov.com/disposable-docker-containers/)
- [Emojis in the projects list?](https://github.com/sergiokopplin/indigo/issues/72)
- [Nokogiri dependencie problems?](https://github.com/sergiokopplin/indigo/issues/81)
- [Syncing a Fork](https://help.github.com/articles/syncing-a-fork/)
Expand Down
16 changes: 11 additions & 5 deletions Gemfile
@@ -1,7 +1,13 @@
source 'http://rubygems.org'

gem 'github-pages'
gem 'html-proofer'
gem 'jekyll-admin'

gem "jekyll-paginate-v2", "~> 2.0"
group :jekyll_plugins do
gem 'github-pages'
gem 'html-proofer'
gem 'jekyll-admin'
gem 'jekyll-fontawesome-svg'
gem 'jekyll-seo-tag'
gem 'jekyll-gist'
gem 'jekyll-feed'
gem 'jemoji'
gem "jekyll-paginate-v2", "~> 2.0"
end
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -62,5 +62,6 @@ and lot of other options, like width, projects, pages, read-time, tags, related
Check the [FAQ](./FAQ.md) if you have any doubt or problem.

---
## License

[MIT](http://kopplin.mit-license.org/) License © Sérgio Kopplin
14 changes: 12 additions & 2 deletions _config.yml
Expand Up @@ -36,7 +36,6 @@ disqus:
# if you don't have any of social below, comment the line
facebook: myfacebook
twitter: mytwitter
# google: mygoogle
# instagram: myinstagram
# pinterest: mypinterest
# linkedin: mylinkedin
Expand Down Expand Up @@ -105,6 +104,17 @@ show-author: true
# do you want some animations?
animation: true

# add default values to specific pages or layouts
defaults:
-
scope:
path: "" # an empty string here means all files in the project
layout: "post"
values:
# setting all post to not hidden by default,
# can be overridden in the front matter for a specific post
hidden: false

plugins:
- jekyll-seo-tag
- jekyll-gist
Expand All @@ -122,4 +132,4 @@ compress_html:
- development
- stage

exclude: ["travis.sh", "Rakefile", "README.md", "Gemfile", "Gemfile.lock", "FAQ.md"]
exclude: ["travis.sh", "Rakefile", "README.md", "Gemfile", "Gemfile.lock", "FAQ.md", "node_modules", "vendor"]
16 changes: 8 additions & 8 deletions _includes/author.html
Expand Up @@ -11,23 +11,23 @@ <h4 class="name">{{ site.authors[page.author].name }}</h4>
<!-- Note: Only use three share links if your site width is set to large -->
<!-- If site width is set to normal, you may choose any two share links -->
<a class="twitter" href="https://twitter.com/intent/tweet?text={{ site.url }}{{ page.url }} - {{ page.title }} by @{{ site.authors[page.author].twitter }}">
<svg class="icon icon-twitter"><use xlink:href="#icon-twitter"></use></svg><span class="icon-twitter">Tweet</span>
{% fa_svg fab.fa-twitter %}
<span class="icon-twitter">Tweet</span>
</a>

<a class="facebook" href="javascript:void(0)" onclick="window.open('https://facebook.com/sharer/sharer.php?u='+encodeURIComponent(location.href), 'facebook-share-dialog', 'width=626,height=436'); return false;">
<svg class="icon icon-facebook"><use xlink:href="#icon-facebook"></use></svg><span class="icon-facebook-rect">Share</span>
{% fa_svg fab.fa-facebook %}
<span class="icon-facebook-rect">Share</span>
</a>

<!-- <a class="google-plus" href="https://plus.google.com/share?url={{ site.url }}{{ page.url }}" target="_blank">
<svg class="icon icon-google-plus"><use xlink:href="#icon-google-plus"></use></svg><span class="icon-google-plus">Share</span>
</a> -->

<!-- <a class="linkedin" href="https://www.linkedin.com/shareArticle?mini=true&amp;url={{ site.url }}{{ page.url }}&amp;title={{ page.title }}&amp;summary={{ page.description }}&amp;source={{ site.url }}" target="_blank">
<svg class="icon icon-linkedin"><use xlink:href="#icon-linkedin"></use></svg><span class="icon-linkedin">Share</span>
{% fa_svg fab.fa-linkedin %}
<span class="icon-linkedin">Share</span>
</a> -->

<!-- <a class="reddit" href="https://reddit.com/submit?url={{ site.url }}{{ page.url }}&amp;title={{ page.title }}" target="_blank">
<svg class="icon icon-reddit"><use xlink:href="#icon-reddit"></use></svg><span class="icon-reddit">Share</span>
{% fa_svg fab.fa-reddit %}
<span class="icon-reddit">Share</span>
</a> -->
</div>
</div>
Expand Down
8 changes: 7 additions & 1 deletion _includes/footer.html
@@ -1,5 +1,11 @@
<footer class="footer-main">
{{ site.name }} © {{ site.time | date: '%Y' }} <a class="link" href="{{ site.url }}/feed.xml" target="_blank"><svg class="icon icon-rss"><use xlink:href="#icon-rss"></use></svg></a>
<span class="copyright">
{{ site.name }} © {{ site.time | date: '%Y' }}
</span>

<a class="link" href="{{ site.url }}/feed.xml" target="_blank">
{% fa_svg fas.fa-rss %}
</a>

<p class="extra">
<a class="link" href="https://github.com/sergiokopplin/indigo">Indigo theme</a> by <a class="link" href="https://github.com/sergiokopplin/indigo">Kopplin</a>
Expand Down

0 comments on commit 1f19f2a

Please sign in to comment.