Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ImgBot] Optimize images #13

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
6 changes: 0 additions & 6 deletions .gitignore

This file was deleted.

23 changes: 0 additions & 23 deletions Gemfile

This file was deleted.

81 changes: 81 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
GEM
remote: https://rubygems.org/
specs:
addressable (2.6.0)
public_suffix (>= 2.0.2, < 4.0)
colorator (1.1.0)
concurrent-ruby (1.1.4)
em-websocket (0.5.1)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0.6.0)
eventmachine (1.2.7-x64-mingw32)
ffi (1.10.0-x64-mingw32)
forwardable-extended (2.6.0)
http_parser.rb (0.6.0)
i18n (0.9.5)
concurrent-ruby (~> 1.0)
jekyll (3.8.5)
addressable (~> 2.4)
colorator (~> 1.0)
em-websocket (~> 0.5)
i18n (~> 0.7)
jekyll-sass-converter (~> 1.0)
jekyll-watch (~> 2.0)
kramdown (~> 1.14)
liquid (~> 4.0)
mercenary (~> 0.3.3)
pathutil (~> 0.9)
rouge (>= 1.7, < 4)
safe_yaml (~> 1.0)
jekyll-archives (2.1.1)
jekyll (>= 2.4)
jekyll-feed (0.11.0)
jekyll (~> 3.3)
jekyll-paginate (1.1.0)
jekyll-sass-converter (1.5.2)
sass (~> 3.4)
jekyll-seo-tag (2.5.0)
jekyll (~> 3.3)
jekyll-sitemap (1.2.0)
jekyll (~> 3.3)
jekyll-watch (2.1.2)
listen (~> 3.0)
kramdown (1.17.0)
liquid (4.0.1)
listen (3.1.5)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
ruby_dep (~> 1.2)
mercenary (0.3.6)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (3.0.3)
rb-fsevent (0.10.3)
rb-inotify (0.10.0)
ffi (~> 1.0)
rouge (3.3.0)
ruby_dep (1.5.0)
safe_yaml (1.0.4)
sass (3.7.3)
sass-listen (~> 4.0.0)
sass-listen (4.0.0)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
wdm (0.1.1)

PLATFORMS
x64-mingw32

DEPENDENCIES
jekyll-archives
jekyll-feed
jekyll-paginate
jekyll-seo-tag
jekyll-sitemap
wdm (>= 0.1.0)

RUBY VERSION
ruby 2.5.1p57

BUNDLED WITH
1.16.4
21 changes: 0 additions & 21 deletions LICENSE.txt

This file was deleted.

5 changes: 0 additions & 5 deletions README.md

This file was deleted.

56 changes: 0 additions & 56 deletions _config.yml

This file was deleted.

36 changes: 36 additions & 0 deletions _includes/featuredbox.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!-- begin post -->
{% assign author = site.authors[post.author] %}
<div class="col-sm-6">
<div class="card">
<div class="row">
<div class="col-md-5 wrapthumbnail">
<a href="{{ post.url | absolute_url }}">
<div class="thumbnail" style="background-image:url({{ site.baseurl }}/{{ post.image }});">
</div>
</a>
</div>
<div class="col-md-7">
<div class="card-block">
<h2 class="card-title"><a href="{{ post.url | absolute_url }}">{{ post.title }}</a></h2>
<h4 class="card-text">{{ post.excerpt | strip_html | truncatewords:25 }}</h4>
<div class="metafooter">
<div class="wrapfooter">
{% if post.author %}
<span class="meta-footer-thumb">
<img class="author-thumb" src="https://www.gravatar.com/avatar/{{ author.gravatar }}?s=250&d=mm&r=x" alt="{{ author.display_name }}">
</span>
<span class="author-meta">
<span class="post-name"><a target="_blank" href="{{ author.web }}">{{ author.display_name }}</a></span><br/>
{% endif %}
<span class="post-date">{{ post.date | date_to_string }}</span>
</span>
<span class="post-read-more"><a href="{{ post.url | absolute_url }}" title="Read Story"><i class="fa fa-link"></i></a></span>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end post -->
13 changes: 0 additions & 13 deletions _includes/pagination.html

This file was deleted.

21 changes: 0 additions & 21 deletions _includes/postbox.html

This file was deleted.

10 changes: 0 additions & 10 deletions _includes/sidebar.html

This file was deleted.

27 changes: 27 additions & 0 deletions _layouts/archive.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
layout: default
title: Archive
---

<!-- Begin List Posts
================================================== -->
<section class="row recent-posts">
<div class="col-md-4 col-lg-4">
{% include sidebar.html %}
</div>

<div class="col-md-8 col-lg-8">
<div class="section-title">
<h2><span>{{ page.type }} '{{ page.title }}'</span></h2>
</div>
<div class="masonrygrid row listrecent">

{% for post in page.posts %}

{% include postbox.html %}

{% endfor %}

</div>
</div>
</section>
Loading