Full Code of nandomoreirame/simplest for AI

master d4351f935606 cached
45 files
54.2 KB
17.3k tokens
1 requests
Download .txt
Repository: nandomoreirame/simplest
Branch: master
Commit: d4351f935606
Files: 45
Total size: 54.2 KB

Directory structure:
gitextract_sck9nf94/

├── .editorconfig
├── .gitignore
├── .ruby-version
├── .travis.yml
├── Gemfile
├── LICENSE
├── README.md
├── _config.yml
├── deploy.sh
├── source/
│   ├── _includes/
│   │   ├── comments.html
│   │   ├── footer.html
│   │   ├── github-corner.html
│   │   ├── head.html
│   │   ├── header.html
│   │   ├── intro.html
│   │   ├── nav.html
│   │   ├── pagination.html
│   │   └── post-share.html
│   ├── _layouts/
│   │   ├── compress.html
│   │   ├── default.html
│   │   ├── page.html
│   │   └── post.html
│   ├── _posts/
│   │   ├── 2015-11-12-a-wonderful-serenity-has-taken-possession-of-my-entire-soul.md
│   │   ├── 2015-11-12-far-far-away-behind-the-word-mountains-far-from-the-countries-vokalia-and-consonantia.md
│   │   ├── 2015-11-12-lorem-ipsum-dolor-sit-amet-consectetuer-adipiscing-elit.md
│   │   ├── 2015-11-12-lorem.markdown
│   │   ├── 2015-11-12-the-quick-brown-fox-jumps-over-a-lazy-dog.md
│   │   ├── 2015-11-26-lorem-ipsum-dolor-sit.markdown
│   │   └── 2015-12-09-welcome-to-jekyll.markdown
│   ├── about.md
│   ├── assets/
│   │   ├── css/
│   │   │   └── main.scss
│   │   └── scss/
│   │       ├── _layout.scss
│   │       ├── _syntax-highlighting.scss
│   │       ├── _variables.scss
│   │       ├── base/
│   │       │   ├── _base.scss
│   │       │   ├── _buttons.scss
│   │       │   ├── _forms.scss
│   │       │   ├── _lists.scss
│   │       │   ├── _reset.scss
│   │       │   ├── _tables.scss
│   │       │   └── _typography.scss
│   │       └── main.scss
│   ├── feed.xml
│   └── index.html
└── travisGemfile

================================================
FILE CONTENTS
================================================

================================================
FILE: .editorconfig
================================================
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true


================================================
FILE: .gitignore
================================================
_site
.sass-cache
.jekyll-metadata
*.sublime-project
*.sublime-workspace
.DS_Store


================================================
FILE: .ruby-version
================================================
2.3.1


================================================
FILE: .travis.yml
================================================
language: ruby
rvm:
- 2.1
cache:
- bundler
gemfile: travisGemfile
install:
- bundle install
before_script:
- chmod +x deploy.sh
- git config credential.helper "store --file=.git/credentials"
- echo "https://${GH_TOKEN}:@github.com" > .git/credentials
script: "./deploy.sh"
env:
  global:
  - NOKOGIRI_USE_SYSTEM_LIBRARIES=true
  - HTML_FOLDER="./_site/"
  - GH_REF="nandomoreirame/simplest"
  - secure: Ixy8mwupdi1rJM22WT3F6bhoDBpxWb9qJJHqqaubr3KxvIPkoXn9+kquZhGjsc1qIs49NmlPn8k2dpttmLdz3yYFRbD0CeRvloS9/k+ugS2ccX3rF05uGG2RuvXGUKOp7Fz5JD4fSdTIY4JQIpx7jPwp1ZeRFqvrdIV1xvKhWEc2T3G1GekfWiTRlcU/Q5ZJNCeFG1RdsJc/yrGdMzPn9DK5kbKHQi4I3BEgU5AIm6/SBBcWe3bI65CfkDivpg7FmLLWDZFHvyl7+fgUoznWazbNWMbnE55XTTVqOvssPFpKryf3mIOTI7w7lx/U9YXY2FgpoKlAtPiH7uiTIeZ3mjHmevnhTJQoVb91wOn1IwzW0cFwhuE0KFN12M3I3Fi2uofKez7ExXtilV8xKFRwGCLQ7g9rIxemkIr00C81Q/lgooKBQJDh2gazuYU+G0hN1n0xOPx295Oln+PfJAx6a9suvQLsmiBwjCbwGL4ipkmCZ3Ir8oh4+Muynfove6HJ4H4z3+QuXKBbZGOgtlEsAWF7k3yRqfBlWCLvyOejvyKD81qME7pPVEzfAoKh9FJOCBKIZABODdbCGI1JgCGMxkzM9Q4AV1y49Jo39ak/7PdN/VGUc8/GwpsAusVrlmDnwpAP0t1Y8SKmVgySHJE++5cRS0mEYhtG+AYoAzG26Qs=
branches:
  only:
  - master
  - gh-pages
notifications:
  email: false


================================================
FILE: Gemfile
================================================
# If you have OpenSSL installed, we recommend updating
# the following line to use "https"
source 'http://rubygems.org'

group :development do
  gem 'html-proofer'
  gem 'jekyll', '~> 3.0', '>= 3.0.1'
  gem 'jekyll-paginate', '~> 1.1'
  gem 'sass', '~> 3.4', '>= 3.4.20'
  gem 'bourbon', '~> 4.2', '>= 4.2.6'
  gem 'pygments.rb', '~> 0.6.3'
end


================================================
FILE: LICENSE
================================================
The MIT License (MIT)

Copyright (c) 2015 Fernando Moreira

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.



================================================
FILE: README.md
================================================
# simplest

Simple Jekyll theme



> :warning:
  This theme requires ruby and rubygems installed

* [x] Clean layout
* [x] Resposive layout
* [x] Preprocessor SASS
* [x] HTML minified
* [x] CSS minified
* [x] No Javascript
* [x] Pagination
* [x] Syntax highlight
* [x] Author config
* [x] Comments with Disqus
* [x] Share posts

---

### Start in 4 steps

1. Download or clone repo `git clone git@github.com:nandomoreirame/simplest.git`
2. Enter the folder: `cd simplest/`
3. Install Ruby gems: `bundle install`
4. Start Jekyll server: `jekyll serve`

Access, [localhost:4000/simplest](http://localhost:4000/simplest)

---

### Demo and Download

[Demo](https://nandomoreirame.github.io/simplest/)
[Download](https://github.com/nandomoreirame/simplest/archive/master.zip)

![simplest - free Jekyll theme](/screenshot.png)

---

### Copyright and license

It is under [the MIT license](/LICENSE).

Enjoy :yum:


================================================
FILE: _config.yml
================================================

# SEO settings
title: Simplest
description: "A free Jekyll theme for download"
keywords: "Jekyll, theme, free, download, SEO, blog, web"
url: http://nandomoreira.me
baseurl: "/simplest"
# baseurl: null

google_analytics: UA-52446115-1
repo: http://github.com/nandomoreirame/simplest
disqus_shortname: "nandothemes"

# Build settings
permalink   : /:year/:title/
markdown    : kramdown
highlighter : pygments

paginate: 4
paginate_path: "/page/:num/"
comments: true

source: source
destination: _site

# Sass configuration
sass:
  sass_dir: assets/scss
  style: compressed # expanded

# Author settings
author:
  name     : Fernando Moreira
  job      : Frontend Engineer
  bio      : "Enthusiast performance, responsive design and usability, always looking for the best project and good coffee."
  thumb    : /images/author.jpg
  email    : nandomoreira.me@gmail.com
  url      : http://nandomoreira.me
  github   : http://github.com/nandomoreirame
  twitter  : http://twitter.com/nandomoreirame
  facebook : http://facebook.com/fernando.dev
  linkedin : http://linkedin.com/in/nandomoreirame

# social settings
og_locale: "pt_BR"
twitter_card: "summary_large_image"
twitter_site: "@nandomoreirame"

gems:
  - bourbon
  - jekyll-paginate

# navbar pages
navbar:
  - slug : about
    title: About
  - slug : blog
    title: Blog

exclude: ["gulp", "node_modules", "bower", "bower_components", "config.rb", "src", "Gemfile", "Gemfile.lock", ".rvmrc", ".rbenv-version", "package.json", "gulpfile.js", "README.md", "Rakefile", "changelog.md"]


================================================
FILE: deploy.sh
================================================
#!/usr/bin/env bash
set -e # halt script on error

echo 'Testing travis...'
bundle exec travis-lint

echo 'Jekyll build...'
bundle exec jekyll build

echo 'Testing htmlproof...'
bundle exec htmlproof ./_site --href-ignore "#","/simplest/" --disable-external

cd ${HTML_FOLDER}

# config
git config --global user.email "nandomoreira.me@gmail.com"
git config --global user.name "Fernando Moreira"

# deploy
git init
git add --all
git commit -m "Deploy to GitHub Pages"
git push --force --quiet "https://${GH_TOKEN}@github.com/${GH_REF}" master:gh-pages


================================================
FILE: source/_includes/comments.html
================================================
{% if page.comments %}
  <aside id="comments" class="disqus">

    <div class="container">
      <h3><i class="icon icon-comments-o"></i> Comments</h3>
      <div id="disqus_thread"></div>

      <script type="text/javascript">
        var disqus_shortname = '{{ site.disqus_shortname }}';
        var disqus_identifier = '{{ page.id }}';
        var disqus_title = '{{ page.title }}';
        var disqus_url = '{{ site.url }}{{ post.url }}';
        /*var disqus_developer = 1;*/

        (function() {
            var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
            dsq.src = '//' + 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="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a>
      </noscript>
    </div>

  </aside>
{% endif %}

================================================
FILE: source/_includes/footer.html
================================================
<footer class="site-footer">
  <div class="container">
    <small class="pull-left">&copy;{{ site.time | date: '%Y' }} All rights reserved. Made with <a href="http://jekyllrb.com/" target="_blank">Jekyll</a> and ♥</small>
    <small class="pull-right">by <a href="http://nandomoreira.me/" target="_blank">nandomoreira.me</a></small>
  </div>
</footer>


================================================
FILE: source/_includes/github-corner.html
================================================
<a href="{{ site.repo }}" target="_blank" class="github-corner"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#337ab7; color:#fff; position: absolute; top: 0; border: 0; right: 0;"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a>

================================================
FILE: source/_includes/head.html
================================================
<head>
  <meta charset="utf-8">
  <meta name="apple-mobile-web-app-capable" content="yes">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">

  {% assign page_title = '' %}
  {% if page.title == "Home" %}
      {% capture page_title %}
        {{ site.title }} | {{ site.description }}
        {%if paginator and paginator.page != 1 %} - Página {{ paginator.page }}{% endif %}
      {% endcapture %}
  {% else %}
      {% capture page_title %}
          {%if page.slug == 'category' %}Categoria: {% endif %}
          {%if page.slug == 'tag' %}Tag: {% endif %} {{ page.title }} | {{ site.title }}
      {% endcapture %}
  {% endif %}
  {% capture page_title %}
      {{ page_title | strip | rstrip | lstrip | escape | strip_newlines }}
  {% endcapture %}

  <title>{{ page_title }}</title>

  {% assign page_description = '' %}
  {% capture page_description %}
      {% if page.description %}
          {{ page.description | strip_html | strip | rstrip | strip_newlines | truncate: 160 }}
      {% else %}
          {{ site.description }}
      {% endif %}
      {%if paginator and paginator.page != 1 %} - Página {{ paginator.page }} {% endif %}
      {%if page.slug == 'category' %} Categoria: {{ page.title }}{% endif %}
      {%if page.slug == 'tag' %} Tag: {{ page.title }}{% endif %}
  {% endcapture %}

  {% capture page_description %}
      {{ page_description | strip | rstrip | lstrip | escape | strip_newlines }}
  {% endcapture %}

  <meta name="description" content="{{ page_description }}">
  <meta name="keywords" content="{% if page.keywords %}{{ page.keywords }}{% else %}{{ site.keywords }}{% endif %}">

  <meta name="HandheldFriendly" content="True">
  <meta name="MobileOptimized" content="320">

  {% assign page_image = '' %}
  {% capture page_image %}
      {% if page.cover %}
          {{ page.cover | prepend: site.baseurl | prepend: site.url }}
      {% else %}
          {{ site.cover | prepend: site.baseurl | prepend: site.url }}
      {% endif %}
  {% endcapture %}
  {% capture page_image %}{{ page_image | strip | rstrip | lstrip | escape | strip_newlines }}{% endcapture %}

  <!-- Social: Facebook / Open Graph -->
{% if page.id %}
  <meta property="og:type" content="article">
  <meta property="article:author" content="{{ site.author.name }}">
  <meta property="article:section" content="{{ page.categories | join: ', ' }}">
  <meta property="article:tag" content="{{ page.keywords }}">
  <meta property="article:published_time" content="{{ page.date }}">
{% else%}
  <meta property="og:type" content="website">
{% endif %}
  <meta property="og:url" content="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
  <meta property="og:title" content="{{ page_title }}">
  <meta property="og:image" content="{{ page_image }}">
  <meta property="og:description" content="{{ page_description }}">
  <meta property="og:site_name" content="{{ site.author.name }}">
  <meta property="og:locale" content="{{ site.og_locale }}">

  <!-- Social: Twitter -->
  <meta name="twitter:card" content="{{ site.twitter_card }}">
  <meta name="twitter:site" content="{{ site.twitter_site }}">
  <meta name="twitter:title" content="{{ page_title }}">
  <meta name="twitter:description" content="{{ page_description }}">
  <meta name="twitter:image:src" content="{{ page_image }}">

  <!-- Social: Google+ / Schema.org  -->
  <meta itemprop="name" content="{{ page_title }}">
  <meta itemprop="description" content="{{ page_description }}">
  <meta itemprop="image" content="{{ page_image }}">

  <!-- rel prev and next -->
  {% if paginator.previous_page %}
    <link rel="prev" href="{{ paginator.previous_page_path | prepend: site.baseurl | prepend: site.url }}">
  {% endif %}
  {% if paginator.next_page %}
    <link rel="next" href="{{ paginator.next_page_path | prepend: site.baseurl | prepend: site.url }}">
  {% endif %}

  <link rel="stylesheet" href="{{ "/assets/css/main.css" | prepend: site.baseurl }}">

  <!-- Canonical link tag -->
  <link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
  <link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">

  <script type="text/javascript">
  var disqus_shortname = '{{ site.disqus_shortname }}';
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', '{{ site.google_analytics }}']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
  </script>
</head>

================================================
FILE: source/_includes/header.html
================================================
<header class="site-header">
  {% include nav.html %}
</header>


================================================
FILE: source/_includes/intro.html
================================================
<section class="intro">
  <div class="container">
    <p class="lead">Hi, I'm <strong class="author-name" itemprop="name">{{ site.author.name }}</strong>, a <em itemprop="jobTitle">{{ site.author.job }}</em>. <br>
    {{ site.author.bio }} -- <a href="{{ '/about' | prepend: site.author.url }}" target="_blank">about me</a></p>
  </div>
</section>


================================================
FILE: source/_includes/nav.html
================================================

<nav class="nav">
  <div class="container">
    <h1 class="logo"><a href="{{ '/' | prepend: site.baseurl }}">{{ site.title }}<span>blog</span></a></h1>
    <ul class="navbar">
      <li><a href="{{ '/about' | prepend: site.baseurl }}">about</a></li>
      <li><a href="{{ "/feed.xml" | prepend: site.baseurl }}" target="_blank">feed</a></li>
    </ul>
  </div>
</nav>

================================================
FILE: source/_includes/pagination.html
================================================
{% if paginator.total_pages > 1 %}
<nav class="pagination" role="pagination">
  <ul>
    {% assign url = site.baseurl | append: "/" %}
    {% if paginator.previous_page %}
      {% if paginator.previous_page > 1 %}
        {% assign prev = 'page/' | append: paginator.previous_page %}
      {% endif %}
      <li><a class="prev" href="{{ url | append: prev }}" title="Articles new">&laquo; Prev</a></li>
    {% else %}
      <li><span class="prev disabled">&laquo; Prev</span></li>
    {% endif %}
    <li><span class="page-number">Page {{paginator.page}} of {{paginator.total_pages}}</span></li>
    {% if paginator.next_page %}
      <li><a class="next" href="{{ url | append: 'page/' | append: paginator.next_page }}" title="Articles old">Next &raquo;</a></li>
    {% else %}
      <li><span class="next disabled">Next &raquo;</span></li>
    {% endif %}
  </ul>
</nav>
{% endif %}

================================================
FILE: source/_includes/post-share.html
================================================

<aside class="share">

  <h4>Share this.</h4>
  <a href="http://twitter.com/share?text={{page.title}}&amp;url={{ site.url }}{{ page.url }}&amp;hashtags=web,dev,blog,soudev&amp;via=nandomoreirame"
  onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">Twitter</a>
  <a href="https://www.facebook.com/sharer/sharer.php?u={{ site.url }}{{ page.url }}" onclick="window.open(this.href, 'facebook-share', 'width=550,height=235');return false;">Facebook</a>

</aside>


================================================
FILE: source/_layouts/compress.html
================================================
---
# Jekyll layout that compresses HTML
# v2.1.0
# http://jch.penibelst.de/
# © 2014–2015 Anatol Broder
# MIT License
---

{% if site.compress_html.ignore.envs contains jekyll.environment %}{{ content }}{% else %}{% capture _content %}{{ content }}{% endcapture %}{% assign _profile = site.compress_html.profile %}{% if site.compress_html.endings == "all" %}{% assign _endings = "html head body li dt dd p rt rp optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% else %}{% assign _endings = site.compress_html.endings %}{% endif %}{% for _element in _endings %}{% capture _end %}</{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _end %}{% endfor %}{% if _profile and _endings %}{% assign _profile_endings = _content | size | plus: 1 %}{% endif %}{% for _element in site.compress_html.startings %}{% capture _start %}<{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _start %}{% endfor %}{% if _profile and site.compress_html.startings %}{% assign _profile_startings = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.ignore.whitespaces %}{% assign _random = site.time | date: "%s%N" %}{% if site.compress_html.ignore.whitespaces contains "SPACE" %}{% capture _ignore_space %} {% endcapture %}{% capture _freeze_space %}space{{ _random }}{% endcapture %}{% capture _join %}
{% endcapture %}{% else %}{% capture _ignore_space %}{% endcapture %}{% capture _freeze_space %}{% endcapture %}{% capture _join %} {% endcapture %}{% endif %}{% if site.compress_html.ignore.whitespaces contains "LINE FEED" %}{% capture _ignore_line_feed %}
{% endcapture %}{% capture _freeze_line_feed %}line_feed{{ _random }}{% endcapture %}{% else %}{% capture _ignore_line_feed %}{% endcapture %}{% capture _freeze_line_feed %}{% endcapture %}{% endif %}{% if site.compress_html.ignore.whitespaces contains "CHARACTER TABULATION" %}{% capture _ignore_character_tabulation %}	{% endcapture %}{% capture _freeze_character_tabulation %}character_tabulation{{ _random }}{% endcapture %}{% else %}{% capture _ignore_character_tabulation %}{% endcapture %}{% capture _freeze_character_tabulation %}{% endcapture %}{% endif %}{% endif %}{% assign _pre_befores = _content | split: "<pre" %}{% assign _content = "" %}{% for _pre_before in _pre_befores %}{% assign _pres = _pre_before | split: "</pre>" %}{% if _pres.size != 0 %}{% if site.compress_html.ignore.whitespaces %}{% assign _pres_after = _pres.last | replace: _ignore_space, _freeze_space | replace: _ignore_line_feed, _freeze_line_feed | replace: _ignore_character_tabulation, _freeze_character_tabulation | split: " " | join: _join | replace: _freeze_character_tabulation, _ignore_character_tabulation | replace: _freeze_line_feed, _ignore_line_feed | replace: _freeze_space, _ignore_space %}{% else %}{% assign _pres_after = _pres.last | split: " " | join: " " %}{% endif %}{% endif %}{% case _pres.size %}{% when 2 %}{% capture _content %}{{ _content }}<pre{{ _pres.first }}</pre>{{ _pres_after }}{% endcapture %}{% when 1 %}{% capture _content %}{{ _content }}{{ _pres_after }}{% endcapture %}{% endcase %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.comments == "all" %}{% assign _comments = "<!-- -->" | split: " " %}{% else %}{% assign _comments = site.compress_html.comments %}{% endif %}{% if _comments.size == 2 %}{% assign _comment_befores = _content | split: _comments.first %}{% for _comment_before in _comment_befores %}{% assign _comment_content = _comment_before | split: _comments.last | first %}{% if _comment_content %}{% capture _comment %}{{ _comments.first }}{{ _comment_content }}{{ _comments.last }}{% endcapture %}{% assign _content = _content | remove: _comment %}{% endif %}{% endfor %}{% if _profile %}{% assign _profile_comments = _content | size | plus: 1 %}{% endif %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " <e;<e; </e>;</e>;</e> ;</e>" | replace: "e", _element | split: ";" %}{% assign _content = _content | replace: _edges[0], _edges[1] | replace: _edges[2], _edges[3] | replace: _edges[4], _edges[5] %}{% endfor %}{% if _profile and _clippings %}{% assign _profile_clippings = _content | size | plus: 1 %}{% endif %}{{ _content }}{% if _profile %} <table id="compress_html_profile_{{ site.time | date: "%Y%m%d" }}" class="compress_html_profile"> <thead> <tr> <td>Step <td>Bytes <tbody> <tr> <td>raw <td>{{ content | size }}{% if _profile_endings %} <tr> <td>endings <td>{{ _profile_endings }}{% endif %}{% if _profile_startings %} <tr> <td>startings <td>{{ _profile_startings }}{% endif %}{% if _profile_collapse %} <tr> <td>collapse <td>{{ _profile_collapse }}{% endif %}{% if _profile_comments %} <tr> <td>comments <td>{{ _profile_comments }}{% endif %}{% if _profile_clippings %} <tr> <td>clippings <td>{{ _profile_clippings }}{% endif %} </table>{% endif %}{% endif %}


================================================
FILE: source/_layouts/default.html
================================================
---
layout: compress
---
<!DOCTYPE html>
<html>
  {% include head.html %}
  <body>
    <main class="wrapper">
      {% include header.html %}
      {{ content }}
      {% include footer.html %}
    </main>
  </body>
</html>


================================================
FILE: source/_layouts/page.html
================================================
---
layout: default
---

<article class="page container">
  <header class="page-header">
    <h1 class="page-title">{{ page.title }}</h1>
  </header>
  <div class="page-content">
    {{ content }}
  </div>
</article>


================================================
FILE: source/_layouts/post.html
================================================
---
layout: default
---

<article class="post container" itemscope itemtype="http://schema.org/BlogPosting">
  <header class="post-header">
    <h1 class="post-title" itemprop="name headline">{{ page.title }}</h1>
    <p class="post-meta"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time>{% if page.author %} • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ page.author }}</span></span>{% endif %}</p>
  </header>
  <div class="post-content" itemprop="articleBody">
    {{ content }}
    {% include post-share.html %}
  </div>
</article>

{% include comments.html %}


================================================
FILE: source/_posts/2015-11-12-a-wonderful-serenity-has-taken-possession-of-my-entire-soul.md
================================================
---
layout: post
title: "A wonderful serenity has taken possession of my entire soul"
description: "I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents."
date: 2015-11-12 16:39:18
comments: true
description: "A wonderful serenity has taken possession of my entire soul"
keywords: "welcome, wonderful, jekyll, friend"
category: welcome
tags:
- welcome
---

A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart. I am alone, and feel the charm of existence in this spot, which was created for the bliss of souls like mine.

I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents.

I should be incapable of drawing a single stroke at the present moment; and yet I feel that I never was a greater artist than now.

When, while the lovely valley teems with vapour around me, and the meridian sun strikes the upper surface of the impenetrable foliage of my trees, and but a few stray gleams steal into the inner sanctuary, I throw myself down among the tall grass by the trickling stream; and, as I lie close to the earth, a thousand unknown plants are noticed by me: when I hear the buzz of the little world among the stalks, and grow familiar with the countless indescribable forms of the insects and flies, then I feel the presence of the Almighty, who formed us in his own image, and the breath of that universal love which bears and sustains us, as it floats around us in an eternity of bliss; and then, my friend, when darkness overspreads my eyes, and heaven and earth seem to dwell in my soul and absorb its power, like the form of a beloved mistress, then I often think with longing, Oh, would I could describe these conceptions, could impress upon paper all that is living so full and warm within me, that it might be the mirror of my soul, as my soul is the mirror of the infinite God!

O my friend -- but it is too much for my strength -- I sink under the weight of the splendour of these visions!

A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.

I am alone, and feel the charm of existence in this spot, which was created for the bliss of souls like mine.

I am so happy, my dear friend, so absorbed in the exquisite sense of mere tranquil existence, that I neglect my talents.

I should be incapable of drawing a single stroke at the present moment; and yet I feel that I never was a greater artist than now.

When, while the lovely valley teems with vapour around me, and the meridian sun strikes the upper surface of the impenetrable foliage of my trees, and but a few stray gleams steal into the inner sanctuary, I throw myself down among the tall grass by the trickling stream; and, as I lie close to the earth, a thousand unknown plants are noticed by me: when I hear the buzz of the little world among the stalks, and grow familiar with the countless indescribable forms of the insects and

================================================
FILE: source/_posts/2015-11-12-far-far-away-behind-the-word-mountains-far-from-the-countries-vokalia-and-consonantia.md
================================================
---
layout: post
title: "Far far away, behind the word mountains, far from the countries Vokalia and Consonantia"
description: "A small river named Duden flows by their place and supplies it with the necessary regelialia."
date: 2015-11-12 16:38:20
comments: true
keywords: "welcome, Far, far, away"
category: welcome
tags:
- welcome
---

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.

A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.

Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.

The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way.

When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane.

Pityful a rethoric question ran over her cheek, then she continued her way. On her way she met a copy.

The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word "and" and the Little Blind Text should turn around and return to its own, safe country.

But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their projects again and again. And if she hasn’t been rewritten, then they are still using her.

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia.

It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.

The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didn’t listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline

================================================
FILE: source/_posts/2015-11-12-lorem-ipsum-dolor-sit-amet-consectetuer-adipiscing-elit.md
================================================
---
layout: post
title: "Lorem ipsum dolor sit amet, consectetuer adipiscing elit"
description: "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec."
date: 2015-11-12 16:41:50
comments: true
keywords: "welcome, Lorem, ipsum, dolor"
category: welcome
tags:
- welcome
---

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.

Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi.

Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue.

Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum. Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus.

Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc, quis gravida magna mi a libero.

Fusce vulputate eleifend sapien. Vestibulum purus quam, scelerisque ut, mollis sed, nonummy id, metus. Nullam accumsan lorem in dui. Cras ultricies mi eu turpis hendrerit fringilla. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In ac dui quis mi consectetuer lacinia.

Nam pretium turpis et arcu. Duis arcu tortor, suscipit eget, imperdiet nec, imperdiet iaculis, ipsum. Sed aliquam ultrices mauris. Integer ante arcu, accumsan a, consectetuer eget, posuere ut, mauris. Praesent adipiscing. Phasellus ullamcorper ipsum rutrum nunc. Nunc nonummy metus.

Vestibulum volutpat pretium libero. Cras id dui. Aenean ut eros et nisl sagittis vestibulum. Nullam nulla eros, ultricies sit amet, nonummy id, imperdiet feugiat, pede. Sed lectus. Donec mollis hendrerit risus. Phasellus nec sem in justo pellentesque facilisis. Etiam imperdiet imperdiet orci.

Nunc nec neque. Phasellus leo dolor, tempus non, auctor et, hendrerit quis, nisi. Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Maecenas malesuada. Praesent congue erat at massa. Sed cursus turpis vitae tortor. Donec posuere vulputate arcu. Phasellus accumsan cursus velit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Sed aliquam, nisi quis porttitor congue, elit erat euismod orci.

================================================
FILE: source/_posts/2015-11-12-lorem.markdown
================================================
---
layout: post
title:  "Lorem ipsum dolor sit amet"
description: "Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui."
date:   2015-11-12 19:19:43
keywords: "welcome, Aenean, fermentum, Lorem, ipsum"
comments: true
category: welcome
---

<p><strong>Pellentesque habitant morbi tristique</strong> senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. <em>Aenean ultricies mi vitae est.</em> Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, <code>commodo vitae</code>, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. <a href="#">Donec non enim</a> in turpis pulvinar facilisis. Ut felis.</p>

<h2>Header Level 2</h2>

<ol>
  <li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</li>
  <li>Aliquam tincidunt mauris eu risus.</li>
</ol>

<blockquote><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.</p></blockquote>

<h3>Header Level 3</h3>

<ul>
  <li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</li>
  <li>Aliquam tincidunt mauris eu risus.</li>
</ul>

<h4>Header Level 4</h4>

<h5>Header Level 5</h5>

<h6>Header Level 6</h6>

{% highlight css %}
#header h1 a {
  display: block;
  width: 300px;
  height: 80px;
}
{% endhighlight %}

================================================
FILE: source/_posts/2015-11-12-the-quick-brown-fox-jumps-over-a-lazy-dog.md
================================================
---
layout: post
title: "The quick, brown fox jumps over a lazy dog"
date: 2015-11-12 16:42:24
comments: true
description: "The quick, brown fox jumps over a lazy dog"
keywords: ""
category: welcome
tags:
- welcome
---

The quick, brown fox jumps over a lazy dog. DJs flock by when MTV ax quiz prog. Junk MTV quiz graced by fox whelps. Bawds jog, flick quartz, vex nymphs. Waltz, bad nymph, for quick jigs vex! Fox nymphs grab quick-jived waltz.

Brick quiz whangs jumpy veldt fox. Bright vixens jump; dozy fowl quack. Quick wafting zephyrs vex bold Jim. Quick zephyrs blow, vexing daft Jim. Sex-charged fop blew my junk TV quiz. How quickly daft jumping zebras vex.

Two driven jocks help fax my big quiz. Quick, Baz, get my woven flax jodhpurs! "Now fax quiz Jack! " my brave ghost pled. Five quacking zephyrs jolt my wax bed. Flummoxed by job, kvetching W. zaps Iraq. Cozy sphinx waves quart jug of bad milk.

A very bad quack might jinx zippy fowls. Few quips galvanized the mock jury box. Quick brown dogs jump over the lazy fox. The jay, pig, fox, zebra, and my wolves quack! Blowzy red vixens fight for a quick jump.

Joaquin Phoenix was gazed by MTV for luck. A wizard’s job is to vex chumps quickly in fog. Watch "Jeopardy! ", Alex Trebek's fun TV quiz game. Woven silk pyjamas exchanged for blue quartz. Brawny gods just flocked up to quiz and vex him.

Adjusting quiver and bow, Zompyc[1] killed the fox. My faxed joke won a pager in the cable TV quiz show. Amazingly few discotheques provide jukeboxes. My girl wove six dozen plaid jackets before she quit. Six big devils from Japan quickly forgot how to waltz.

Big July earthquakes confound zany experimental vow. Foxy parsons quiz and cajole the lovably dim wiki-girl. Have a pick: twenty six letters - no forcing a jumbled quiz! Crazy Fredericka bought many very exquisite opal jewels.

Sixty zippers were quickly picked from the woven jute bag. A quick movement of the enemy will jeopardize six gunboats. All questions asked by five watch experts amazed the judge. Jack quietly moved up front and seized the big ball of wax.

The quick, brown fox jumps over a lazy dog. DJs flock by when MTV ax quiz prog. Junk MTV quiz graced by fox whelps. Bawds jog, flick quartz, vex nymphs. Waltz, bad nymph, for quick jigs vex! Fox nymphs grab quick-jived waltz. Brick quiz whangs jumpy veldt fox.

Bright vixens jump; dozy fowl quack. Quick wafting zephyrs vex bold Jim. Quick zephyrs blow, vexing daft Jim. Sex-charged fop blew my junk TV quiz. How quickly daft jumping zebras vex. Two driven jocks help fax my big quiz. Quick, Baz, get my woven flax jodhpurs!

"Now fax quiz Jack! " my brave ghost pled. Five quacking zephyrs jolt my wax bed. Flummoxed by job, kvetching W. zaps Iraq. Cozy sphinx waves quart jug of bad milk. A very bad quack might jinx zippy fowls. Few quips galvanized the mock jury box. Quick brown dogs jump over the lazy fox. The jay, pig, fox, zebra, and my wolves quack! Blowzy red vixens fight for a quick jump. Joaquin Phoenix was gazed by MTV

================================================
FILE: source/_posts/2015-11-26-lorem-ipsum-dolor-sit.markdown
================================================
---
layout: post
title:  "Lorem ipsum dolor sit"
comments: true
date:   2015-11-26 13:46:52
categories: jekyll update
---

<h1>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</h1>

<p><strong>Pellentesque habitant morbi tristique</strong> senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. <em>Aenean ultricies mi vitae est.</em> Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, <code>commodo vitae</code>, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. <a href="#">Donec non enim</a> in turpis pulvinar facilisis. Ut felis.</p>

<h2>Header Level 2</h2>

<ol>
  <li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</li>
  <li>Aliquam tincidunt mauris eu risus.</li>
</ol>

<blockquote><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.</p></blockquote>

<h3>Header Level 3</h3>

<h4>Header Level 4</h4>
<h5>Header Level 5</h5>

<ul>
  <li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</li>
  <li>Aliquam tincidunt mauris eu risus.</li>
</ul>

{% highlight css %}
#header h1 a {
  display: block;
  width: 300px;
  height: 80px;
}
{% endhighlight %}


================================================
FILE: source/_posts/2015-12-09-welcome-to-jekyll.markdown
================================================
---
layout: post
title:  "Welcome to Jekyll!"
date:   2015-12-09 22:05:33 -0200
categories: jekyll update
comments: true
---
You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.

To add new posts, simply add a file in the `_posts` directory that follows the convention `YYYY-MM-DD-name-of-post.ext` and includes the necessary front matter. Take a look at the source for this post to get an idea about how it works.

Jekyll also offers powerful support for code snippets:

{% highlight ruby %}
def print_hi(name)
  puts "Hi, #{name}"
end
print_hi('Tom')
#=> prints 'Hi, Tom' to STDOUT.
{% endhighlight %}

Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk].

[jekyll-docs]: http://jekyllrb.com/docs/home
[jekyll-gh]:   https://github.com/jekyll/jekyll
[jekyll-talk]: https://talk.jekyllrb.com/


================================================
FILE: source/about.md
================================================
---
layout: page
title: About
permalink: /about/
---

This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](http://jekyllrb.com/)

You can find the source code for the Jekyll new theme at: [github.com/jglovier/jekyll-new](https://github.com/jglovier/jekyll-new)

You can find the source code for Jekyll at [github.com/jekyll/jekyll](https://github.com/jekyll/jekyll)


================================================
FILE: source/assets/css/main.scss
================================================
---
# Only the main Sass file needs front matter (the dashes are enough)
---
@charset "utf-8";
@import "main";


================================================
FILE: source/assets/scss/_layout.scss
================================================
* {
  &,
  &:before,
  &:after {
    box-sizing: border-box;
  }
}

html,
body {
  width: 100%;
  height: 100%;
}

.clearfix {
  &:before {
    content: " ";
    display: table;
  }

  &:after {
    content: " ";
    display: table;
    clear: both;
  }

  *zoom: 1;
}

body {
  background-color: $base-background-color;
  font-weight: 400;
}

hr {
  border-top: none;
  border-bottom: 2px solid lighten($light-gray-color, 7%);
  width: 100%;
  margin: $small-spacing 0;
}

.container {
  padding: $base-spacing;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.link {
  display: inline-block;
  padding-bottom: .08em;
  border-bottom: 2px solid $light-gray-color;

  @include transition(border 300ms linear);

  &:hover,
  &:focus,
  &:active {
    border-color: darken($light-gray-color, 10%);
  }
}

.site-header {
  border-top: 5px solid $light-gray-color;
  border-bottom: 1px solid lighten($light-gray-color, 5%);
  margin-bottom: $small-spacing;
  min-height: 80px;
}

.intro {
  .author-name {
    background-color: $action-color;
    color: $white-color;
    display: inline-block;
    padding: 0 .3em;
  }

  a {
    @extend .link;
  }
}

.logo {
  float: left;
  margin: 0 0 1em 0;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;

  span {
    font-weight: 700;
  }
}

.nav {
  min-height: 64px;
}

.navbar {
  float: right;
  margin: 0;
  position: relative;
  padding: 0;
  pointer-events: all;
  cursor: pointer;

  li {
    display: inline-block;
    padding: 0 .6em;
  }

  a {
    @extend .link;
  }
}

.post-list {
  background-color: lighten($light-gray-color, 17%);
  padding: $base-spacing 0;
}

.post-item {
  padding-bottom: $small-spacing;
  margin-bottom: $base-spacing;
  border-bottom: 1px solid lighten($light-gray-color, 5%);

  strong {
    font-weight: 700;
  }

  &:last-child {
    border-bottom: 0;
    margin-bottom: 0;
  }

  .readmore {
    font-style: italic;
  }
}

.post-meta {
  color: $medium-gray-color;
  font-style: italic;
}

.post-link,
.post a,
.page a {
  @extend .link;
}

.post {
  @extend .clearfix;
}

.pagination {
  li, a, span {
    display: inline-block;
  }

  a, span {
    font-size: rem(12);
    padding: .5em;
  }

  .prev, .next {
    @extend .link;
  }
}

.share {
  padding: $base-spacing 0 0;

  @extend .pull-right;

  h4 {
    display: inline-block;
  }
}

.disqus {
  background-color: lighten($light-gray-color, 16%);
  padding: $base-spacing 0;

  hr {
    margin: $base-spacing 0;
  }
}

.site-footer {
  @extend .clearfix;

  padding: $base-spacing 0;

  a {
    @extend .link;
  }

  small {
    display: block;
    font-size: rem(12);
    color: darken($medium-gray-color, 10%);
  }
}


================================================
FILE: source/assets/scss/_syntax-highlighting.scss
================================================
/**
* Syntax highlighting styles
*/
.highlight {
  margin: $base-spacing 0;
  padding: 0;
  box-shadow: 0px 0px 2px rgba($black-color, .1);

  .highlighter-rouge &, &, .hll, pre, code {
    background-color: lighten($light-gray-color, 13%) !important;
  }

  pre {
    margin: 0;
    padding: $base-spacing;
    white-space: pre;
    line-height: 23px;
    overflow-x: auto;
    margin-bottom: 0;
    word-break: inherit;
    word-wrap: inherit;

    &, code {
      color: $base-font-color;
    }

    code {
      white-space: pre;
      padding: 0 !important;

      * {
        white-space: nowrap; // this sets all children inside to nowrap
      }
    }
  }

  .c     { color: #998; font-style: italic } // Comment
  .err   { color: #a61717; background-color: #e3d2d2 } // Error
  .k     { font-weight: bold } // Keyword
  .o     { font-weight: bold } // Operator
  .cm    { color: #998; font-style: italic } // Comment.Multiline
  .cp    { color: #999; font-weight: bold } // Comment.Preproc
  .c1    { color: #998; font-style: italic } // Comment.Single
  .cs    { color: #999; font-weight: bold; font-style: italic } // Comment.Special
  .gd    { color: #000; background-color: #fdd } // Generic.Deleted
  .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
  .ge    { font-style: italic } // Generic.Emph
  .gr    { color: #a00 } // Generic.Error
  .gh    { color: #999 } // Generic.Heading
  .gi    { color: #000; background-color: #dfd } // Generic.Inserted
  .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
  .go    { color: #888 } // Generic.Output
  .gp    { color: #555 } // Generic.Prompt
  .gs    { font-weight: bold } // Generic.Strong
  .gu    { color: #aaa } // Generic.Subheading
  .gt    { color: #a00 } // Generic.Traceback
  .kc    { font-weight: bold } // Keyword.Constant
  .kd    { font-weight: bold } // Keyword.Declaration
  .kp    { font-weight: bold } // Keyword.Pseudo
  .kr    { font-weight: bold } // Keyword.Reserved
  .kt    { color: #458; font-weight: bold } // Keyword.Type
  .m     { color: #099 } // Literal.Number
  .s     { color: #d14 } // Literal.String
  .na    { color: #008080 } // Name.Attribute
  .nb    { color: #0086B3 } // Name.Builtin
  .nc    { color: #458; font-weight: bold } // Name.Class
  .no    { color: #008080 } // Name.Constant
  .ni    { color: #800080 } // Name.Entity
  .ne    { color: #900; font-weight: bold } // Name.Exception
  .nf    { color: #900; font-weight: bold } // Name.Function
  .nn    { color: #555 } // Name.Namespace
  .nt    { color: #000080 } // Name.Tag
  .nv    { color: #008080 } // Name.Variable
  .ow    { font-weight: bold } // Operator.Word
  .w     { color: #bbb } // Text.Whitespace
  .mf    { color: #099 } // Literal.Number.Float
  .mh    { color: #099 } // Literal.Number.Hex
  .mi    { color: #099 } // Literal.Number.Integer
  .mo    { color: #099 } // Literal.Number.Oct
  .sb    { color: #d14 } // Literal.String.Backtick
  .sc    { color: #d14 } // Literal.String.Char
  .sd    { color: #d14 } // Literal.String.Doc
  .s2    { color: #d14 } // Literal.String.Double
  .se    { color: #d14 } // Literal.String.Escape
  .sh    { color: #d14 } // Literal.String.Heredoc
  .si    { color: #d14 } // Literal.String.Interpol
  .sx    { color: #d14 } // Literal.String.Other
  .sr    { color: #009926 } // Literal.String.Regex
  .s1    { color: #d14 } // Literal.String.Single
  .ss    { color: #990073 } // Literal.String.Symbol
  .bp    { color: #999 } // Name.Builtin.Pseudo
  .vc    { color: #008080 } // Name.Variable.Class
  .vg    { color: #008080 } // Name.Variable.Global
  .vi    { color: #008080 } // Name.Variable.Instance
  .il    { color: #099 } // Literal.Number.Integer.Long
}


================================================
FILE: source/assets/scss/_variables.scss
================================================
// Typography
$base-font-family: 'Open Sans', $helvetica;
// $base-font-family: 'Merriweather', "Georgia", serif;
$heading-font-family: $base-font-family;

// Font Sizes
$base-font-size: 1em;

// Line height
$base-line-height: 1.5;
$heading-line-height: 1.2;

// Other Sizes
$base-border-radius: .52em;
$base-spacing: $base-line-height * 1em;
$small-spacing: $base-spacing / 2;
$base-z-index: 0;

// Colors
$primary-color: #ec2028;
$action-color: $primary-color;
$white-color: #fff;
$black-color: #000;
$blue-color: #477dca;
$dark-gray-color: #333;
$medium-gray-color: #999;
$light-gray-color: #ccc;

// Font Colors
$base-font-color: rgba($dark-gray-color, .8);

// Border
$base-border-color: $light-gray-color;
$base-border: 1px solid $base-border-color;

// Background Colors
$base-background-color: $white-color;
$secondary-background-color: tint($base-border-color, 80%);

// Forms
$form-box-shadow: inset 0 1px 3px rgba($black-color, 0.06);
$form-box-shadow-focus: $form-box-shadow, 0 0 5px adjust-color($action-color, $lightness: -5%, $alpha: -0.3);

// Animations
$base-duration: 150ms;
$base-timing: ease;


================================================
FILE: source/assets/scss/base/_base.scss
================================================
// Bitters 1.1.0
// http://bitters.bourbon.io
// Copyright 2013-2015 thoughtbot, inc.
// MIT License

@import "reset";
@import "buttons";
@import "forms";
@import "lists";
@import "tables";
@import "typography";


================================================
FILE: source/assets/scss/base/_buttons.scss
================================================
// #{$all-buttons} {

.button {
  appearance: none;
  background-color: $action-color;
  border: 0;
  border-radius: $base-border-radius;
  color: $white-color;
  cursor: pointer;
  display: inline-block;
  font-family: $base-font-family;
  font-size: $base-font-size;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  line-height: 1;
  padding: $small-spacing $base-spacing;
  text-decoration: none;
  transition: background-color $base-duration $base-timing;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;

  &:hover,
  &:focus {
    background-color: shade($action-color, 20%);
    color: $white-color;
  }

  &:disabled {
    cursor: not-allowed;
    opacity: 0.5;

    &:hover {
      background-color: $action-color;
    }
  }
}


================================================
FILE: source/assets/scss/base/_forms.scss
================================================
fieldset {
  background-color: $secondary-background-color;
  border: $base-border;
  margin: 0 0 $small-spacing;
  padding: $base-spacing;
}

input,
label,
select {
  display: block;
  font-family: $base-font-family;
  font-size: $base-font-size;
}

label {
  font-weight: 600;
  margin-bottom: $small-spacing / 2;

  &.required::after {
    content: "*";
  }

  abbr {
    display: none;
  }
}

#{$all-text-inputs},
select[multiple=multiple] {
  background-color: $base-background-color;
  border: $base-border;
  border-radius: $base-border-radius;
  box-shadow: $form-box-shadow;
  box-sizing: border-box;
  font-family: $base-font-family;
  font-size: $base-font-size;
  margin-bottom: $small-spacing;
  padding: $base-spacing / 3;
  transition: border-color $base-duration $base-timing;
  width: 100%;

  &:hover {
    border-color: shade($base-border-color, 20%);
  }

  &:focus {
    border-color: $action-color;
    box-shadow: $form-box-shadow-focus;
    outline: none;
  }

  &:disabled {
    background-color: shade($base-background-color, 5%);
    cursor: not-allowed;

    &:hover {
      border: $base-border;
    }
  }
}

textarea {
  resize: vertical;
}

input[type="search"] {
  appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin-right: $small-spacing / 2;

  + label {
    display: inline-block;
  }
}

input[type="file"] {
  margin-bottom: $small-spacing;
  width: 100%;
}

select {
  margin-bottom: $base-spacing;
  max-width: 100%;
  width: auto;
}


================================================
FILE: source/assets/scss/base/_lists.scss
================================================
ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;

  &%default-ul {
    list-style-type: disc;
    margin-bottom: $small-spacing;
    padding-left: $base-spacing;
  }

  &%default-ol {
    list-style-type: decimal;
    margin-bottom: $small-spacing;
    padding-left: $base-spacing;
  }
}

dl {
  margin-bottom: $small-spacing;

  dt {
    font-weight: bold;
    margin-top: $small-spacing;
  }

  dd {
    margin: 0;
  }
}


================================================
FILE: source/assets/scss/base/_reset.scss
================================================
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}


================================================
FILE: source/assets/scss/base/_tables.scss
================================================
table {
  border-collapse: collapse;
  font-feature-settings: "kern", "liga", "tnum";
  margin: $small-spacing 0;
  table-layout: fixed;
  width: 100%;
}

th {
  border-bottom: 1px solid shade($base-border-color, 25%);
  font-weight: 600;
  padding: $small-spacing 0;
  text-align: left;
}

td {
  border-bottom: $base-border;
  padding: $small-spacing 0;
}

tr,
td,
th {
  vertical-align: middle;
}


================================================
FILE: source/assets/scss/base/_typography.scss
================================================
@import url("//fonts.googleapis.com/css?family=Open+Sans:400,300,700");
// @import url("//fonts.googleapis.com/css?family=Merriweather:400,300,700");

body {
  color: $base-font-color;
  font-family: $base-font-family;
  font-feature-settings: "kern", "liga", "pnum";
  font-size: $base-font-size;
  line-height: $base-line-height;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: $heading-font-family;
  font-size: $base-font-size;
  line-height: $heading-line-height;
  margin: 0 0 $small-spacing;
  font-weight: 300;
}

h1 {
  font-size: rem(30);
}

h2 {
  font-size: rem(26);
}

h3 {
  font-size: rem(24);
}

h4 {
  font-size: rem(20);
}

h5,
h6 {
  font-size: rem(16);
}

p {
  margin: 0 0 $small-spacing;

  &.lead {
    font-size: rem(22);
    font-weight: 300;
  }
}

a {
  color: $action-color;
  text-decoration: none;
  transition: color $base-duration $base-timing;

  &:active,
  &:focus,
  &:hover {
    color: shade($action-color, 25%);
  }
}

hr {
  border-bottom: $base-border;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: $base-spacing 0;
}

img,
picture {
  margin: 0;
  max-width: 100%;
}

blockquote {
  padding: 0 0 0 $base-spacing;
  margin: $base-spacing 0;
  color: $medium-gray-color;
  line-height: 1.8;
  border-left: $small-spacing solid $light-gray-color;
}

code {
  background: none;
  border-radius: 0;
  border: none;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  margin: 0;
  padding: 0 5px;
  background-color: lighten($light-gray-color, 13%);
}

pre {
  -webkit-overflow-scrolling: touch;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  margin: 0;

  code {
    line-height: 1.75em;
  }
}


================================================
FILE: source/assets/scss/main.scss
================================================

@import "bourbon";

@import "variables";
@import "base/base";

@import "layout";
@import "syntax-highlighting";


================================================
FILE: source/feed.xml
================================================
---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>{{ site.title | xml_escape }}</title>
    <description>{{ site.description | xml_escape }}</description>
    <link>{{ site.url }}{{ site.baseurl }}/</link>
    <atom:link href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" rel="self" type="application/rss+xml"/>
    <pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
    <lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
    <generator>Jekyll v{{ jekyll.version }}</generator>
    {% for post in site.posts limit:10 %}
      <item>
        <title>{{ post.title | xml_escape }}</title>
        <description>{{ post.content | xml_escape }}</description>
        <pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
        <link>{{ post.url | prepend: site.baseurl | prepend: site.url }}</link>
        <guid isPermaLink="true">{{ post.url | prepend: site.baseurl | prepend: site.url }}</guid>
        {% for tag in post.tags %}
        <category>{{ tag | xml_escape }}</category>
        {% endfor %}
        {% for cat in post.categories %}
        <category>{{ cat | xml_escape }}</category>
        {% endfor %}
      </item>
    {% endfor %}
  </channel>
</rss>


================================================
FILE: source/index.html
================================================
---
layout: default
title: Home
---

{% include intro.html %}

<section class="post-list">
  <div class="container">

    <h2>Writing..</h2>

    {% for post in paginator.posts %}
      <article class="post-item">
        <p><span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>  — <strong><a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></strong> — <span> {{ post.content | strip_html | truncatewords: 40 }}</span> <a class="post-link readmore" href="{{ post.url | prepend: site.baseurl }}">Read more</a></p>
      </article>
    {% endfor %}
  </div>

  <div class="container">
    {% include pagination.html %}
  </div>
</section>


================================================
FILE: travisGemfile
================================================
# If you have OpenSSL installed, we recommend updating
# the following line to use "https"
source 'http://rubygems.org'

gem 'liquid'
gem 'redcarpet'
gem 'github-pages'
gem 'jekyll'
gem 'jekyll-paginate'
gem 'html-proofer'
gem 'travis-lint'
gem 'bourbon'
Download .txt
gitextract_sck9nf94/

├── .editorconfig
├── .gitignore
├── .ruby-version
├── .travis.yml
├── Gemfile
├── LICENSE
├── README.md
├── _config.yml
├── deploy.sh
├── source/
│   ├── _includes/
│   │   ├── comments.html
│   │   ├── footer.html
│   │   ├── github-corner.html
│   │   ├── head.html
│   │   ├── header.html
│   │   ├── intro.html
│   │   ├── nav.html
│   │   ├── pagination.html
│   │   └── post-share.html
│   ├── _layouts/
│   │   ├── compress.html
│   │   ├── default.html
│   │   ├── page.html
│   │   └── post.html
│   ├── _posts/
│   │   ├── 2015-11-12-a-wonderful-serenity-has-taken-possession-of-my-entire-soul.md
│   │   ├── 2015-11-12-far-far-away-behind-the-word-mountains-far-from-the-countries-vokalia-and-consonantia.md
│   │   ├── 2015-11-12-lorem-ipsum-dolor-sit-amet-consectetuer-adipiscing-elit.md
│   │   ├── 2015-11-12-lorem.markdown
│   │   ├── 2015-11-12-the-quick-brown-fox-jumps-over-a-lazy-dog.md
│   │   ├── 2015-11-26-lorem-ipsum-dolor-sit.markdown
│   │   └── 2015-12-09-welcome-to-jekyll.markdown
│   ├── about.md
│   ├── assets/
│   │   ├── css/
│   │   │   └── main.scss
│   │   └── scss/
│   │       ├── _layout.scss
│   │       ├── _syntax-highlighting.scss
│   │       ├── _variables.scss
│   │       ├── base/
│   │       │   ├── _base.scss
│   │       │   ├── _buttons.scss
│   │       │   ├── _forms.scss
│   │       │   ├── _lists.scss
│   │       │   ├── _reset.scss
│   │       │   ├── _tables.scss
│   │       │   └── _typography.scss
│   │       └── main.scss
│   ├── feed.xml
│   └── index.html
└── travisGemfile
Condensed preview — 45 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (60K chars).
[
  {
    "path": ".editorconfig",
    "chars": 147,
    "preview": "root = true\n\n[*]\nindent_style = space\nindent_size = 2\nend_of_line = lf\ncharset = utf-8\ntrim_trailing_whitespace = true\ni"
  },
  {
    "path": ".gitignore",
    "chars": 83,
    "preview": "_site\n.sass-cache\n.jekyll-metadata\n*.sublime-project\n*.sublime-workspace\n.DS_Store\n"
  },
  {
    "path": ".ruby-version",
    "chars": 6,
    "preview": "2.3.1\n"
  },
  {
    "path": ".travis.yml",
    "chars": 1160,
    "preview": "language: ruby\nrvm:\n- 2.1\ncache:\n- bundler\ngemfile: travisGemfile\ninstall:\n- bundle install\nbefore_script:\n- chmod +x de"
  },
  {
    "path": "Gemfile",
    "chars": 345,
    "preview": "# If you have OpenSSL installed, we recommend updating\n# the following line to use \"https\"\nsource 'http://rubygems.org'\n"
  },
  {
    "path": "LICENSE",
    "chars": 1084,
    "preview": "The MIT License (MIT)\n\nCopyright (c) 2015 Fernando Moreira\n\nPermission is hereby granted, free of charge, to any person "
  },
  {
    "path": "README.md",
    "chars": 909,
    "preview": "# simplest\n\nSimple Jekyll theme\n\n\n\n> :warning:\n  This theme requires ruby and rubygems installed\n\n* [x] Clean layout\n* ["
  },
  {
    "path": "_config.yml",
    "chars": 1540,
    "preview": "\n# SEO settings\ntitle: Simplest\ndescription: \"A free Jekyll theme for download\"\nkeywords: \"Jekyll, theme, free, download"
  },
  {
    "path": "deploy.sh",
    "chars": 551,
    "preview": "#!/usr/bin/env bash\nset -e # halt script on error\n\necho 'Testing travis...'\nbundle exec travis-lint\n\necho 'Jekyll build."
  },
  {
    "path": "source/_includes/comments.html",
    "chars": 1032,
    "preview": "{% if page.comments %}\n  <aside id=\"comments\" class=\"disqus\">\n\n    <div class=\"container\">\n      <h3><i class=\"icon icon"
  },
  {
    "path": "source/_includes/footer.html",
    "chars": 352,
    "preview": "<footer class=\"site-footer\">\n  <div class=\"container\">\n    <small class=\"pull-left\">&copy;{{ site.time | date: '%Y' }} A"
  },
  {
    "path": "source/_includes/github-corner.html",
    "chars": 1139,
    "preview": "<a href=\"{{ site.repo }}\" target=\"_blank\" class=\"github-corner\"><svg width=\"80\" height=\"80\" viewBox=\"0 0 250 250\" style="
  },
  {
    "path": "source/_includes/head.html",
    "chars": 4893,
    "preview": "<head>\n  <meta charset=\"utf-8\">\n  <meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\n  <meta http-equiv=\"X-UA-Comp"
  },
  {
    "path": "source/_includes/header.html",
    "chars": 64,
    "preview": "<header class=\"site-header\">\n  {% include nav.html %}\n</header>\n"
  },
  {
    "path": "source/_includes/intro.html",
    "chars": 348,
    "preview": "<section class=\"intro\">\n  <div class=\"container\">\n    <p class=\"lead\">Hi, I'm <strong class=\"author-name\" itemprop=\"name"
  },
  {
    "path": "source/_includes/nav.html",
    "chars": 368,
    "preview": "\n<nav class=\"nav\">\n  <div class=\"container\">\n    <h1 class=\"logo\"><a href=\"{{ '/' | prepend: site.baseurl }}\">{{ site.ti"
  },
  {
    "path": "source/_includes/pagination.html",
    "chars": 884,
    "preview": "{% if paginator.total_pages > 1 %}\n<nav class=\"pagination\" role=\"pagination\">\n  <ul>\n    {% assign url = site.baseurl | "
  },
  {
    "path": "source/_includes/post-share.html",
    "chars": 497,
    "preview": "\n<aside class=\"share\">\n\n  <h4>Share this.</h4>\n  <a href=\"http://twitter.com/share?text={{page.title}}&amp;url={{ site.u"
  },
  {
    "path": "source/_layouts/compress.html",
    "chars": 5318,
    "preview": "---\n# Jekyll layout that compresses HTML\n# v2.1.0\n# http://jch.penibelst.de/\n# © 2014–2015 Anatol Broder\n# MIT License\n-"
  },
  {
    "path": "source/_layouts/default.html",
    "chars": 224,
    "preview": "---\nlayout: compress\n---\n<!DOCTYPE html>\n<html>\n  {% include head.html %}\n  <body>\n    <main class=\"wrapper\">\n      {% i"
  },
  {
    "path": "source/_layouts/page.html",
    "chars": 217,
    "preview": "---\nlayout: default\n---\n\n<article class=\"page container\">\n  <header class=\"page-header\">\n    <h1 class=\"page-title\">{{ p"
  },
  {
    "path": "source/_layouts/post.html",
    "chars": 687,
    "preview": "---\nlayout: default\n---\n\n<article class=\"post container\" itemscope itemtype=\"http://schema.org/BlogPosting\">\n  <header c"
  },
  {
    "path": "source/_posts/2015-11-12-a-wonderful-serenity-has-taken-possession-of-my-entire-soul.md",
    "chars": 3098,
    "preview": "---\nlayout: post\ntitle: \"A wonderful serenity has taken possession of my entire soul\"\ndescription: \"I am so happy, my de"
  },
  {
    "path": "source/_posts/2015-11-12-far-far-away-behind-the-word-mountains-far-from-the-countries-vokalia-and-consonantia.md",
    "chars": 3169,
    "preview": "---\nlayout: post\ntitle: \"Far far away, behind the word mountains, far from the countries Vokalia and Consonantia\"\ndescri"
  },
  {
    "path": "source/_posts/2015-11-12-lorem-ipsum-dolor-sit-amet-consectetuer-adipiscing-elit.md",
    "chars": 3093,
    "preview": "---\nlayout: post\ntitle: \"Lorem ipsum dolor sit amet, consectetuer adipiscing elit\"\ndescription: \"Cum sociis natoque pena"
  },
  {
    "path": "source/_posts/2015-11-12-lorem.markdown",
    "chars": 1753,
    "preview": "---\nlayout: post\ntitle:  \"Lorem ipsum dolor sit amet\"\ndescription: \"Aenean fermentum, elit eget tincidunt condimentum, e"
  },
  {
    "path": "source/_posts/2015-11-12-the-quick-brown-fox-jumps-over-a-lazy-dog.md",
    "chars": 3028,
    "preview": "---\nlayout: post\ntitle: \"The quick, brown fox jumps over a lazy dog\"\ndate: 2015-11-12 16:42:24\ncomments: true\ndescriptio"
  },
  {
    "path": "source/_posts/2015-11-26-lorem-ipsum-dolor-sit.markdown",
    "chars": 1621,
    "preview": "---\nlayout: post\ntitle:  \"Lorem ipsum dolor sit\"\ncomments: true\ndate:   2015-11-26 13:46:52\ncategories: jekyll update\n--"
  },
  {
    "path": "source/_posts/2015-12-09-welcome-to-jekyll.markdown",
    "chars": 1217,
    "preview": "---\nlayout: post\ntitle:  \"Welcome to Jekyll!\"\ndate:   2015-12-09 22:05:33 -0200\ncategories: jekyll update\ncomments: true"
  },
  {
    "path": "source/about.md",
    "chars": 470,
    "preview": "---\nlayout: page\ntitle: About\npermalink: /about/\n---\n\nThis is the base Jekyll theme. You can find out more info about cu"
  },
  {
    "path": "source/assets/css/main.scss",
    "chars": 111,
    "preview": "---\n# Only the main Sass file needs front matter (the dashes are enough)\n---\n@charset \"utf-8\";\n@import \"main\";\n"
  },
  {
    "path": "source/assets/scss/_layout.scss",
    "chars": 2827,
    "preview": "* {\n  &,\n  &:before,\n  &:after {\n    box-sizing: border-box;\n  }\n}\n\nhtml,\nbody {\n  width: 100%;\n  height: 100%;\n}\n\n.clea"
  },
  {
    "path": "source/assets/scss/_syntax-highlighting.scss",
    "chars": 3740,
    "preview": "/**\n* Syntax highlighting styles\n*/\n.highlight {\n  margin: $base-spacing 0;\n  padding: 0;\n  box-shadow: 0px 0px 2px rgba"
  },
  {
    "path": "source/assets/scss/_variables.scss",
    "chars": 1114,
    "preview": "// Typography\n$base-font-family: 'Open Sans', $helvetica;\n// $base-font-family: 'Merriweather', \"Georgia\", serif;\n$headi"
  },
  {
    "path": "source/assets/scss/base/_base.scss",
    "chars": 212,
    "preview": "// Bitters 1.1.0\n// http://bitters.bourbon.io\n// Copyright 2013-2015 thoughtbot, inc.\n// MIT License\n\n@import \"reset\";\n@"
  },
  {
    "path": "source/assets/scss/base/_buttons.scss",
    "chars": 769,
    "preview": "// #{$all-buttons} {\n\n.button {\n  appearance: none;\n  background-color: $action-color;\n  border: 0;\n  border-radius: $ba"
  },
  {
    "path": "source/assets/scss/base/_forms.scss",
    "chars": 1515,
    "preview": "fieldset {\n  background-color: $secondary-background-color;\n  border: $base-border;\n  margin: 0 0 $small-spacing;\n  padd"
  },
  {
    "path": "source/assets/scss/base/_lists.scss",
    "chars": 435,
    "preview": "ul,\nol {\n  list-style-type: none;\n  margin: 0;\n  padding: 0;\n\n  &%default-ul {\n    list-style-type: disc;\n    margin-bot"
  },
  {
    "path": "source/assets/scss/base/_reset.scss",
    "chars": 1109,
    "preview": "/* http://meyerweb.com/eric/tools/css/reset/\n   v2.0 | 20110126\n   License: none (public domain)\n*/\n\nhtml, body, div, sp"
  },
  {
    "path": "source/assets/scss/base/_tables.scss",
    "chars": 400,
    "preview": "table {\n  border-collapse: collapse;\n  font-feature-settings: \"kern\", \"liga\", \"tnum\";\n  margin: $small-spacing 0;\n  tabl"
  },
  {
    "path": "source/assets/scss/base/_typography.scss",
    "chars": 1671,
    "preview": "@import url(\"//fonts.googleapis.com/css?family=Open+Sans:400,300,700\");\n// @import url(\"//fonts.googleapis.com/css?famil"
  },
  {
    "path": "source/assets/scss/main.scss",
    "chars": 113,
    "preview": "\n@import \"bourbon\";\n\n@import \"variables\";\n@import \"base/base\";\n\n@import \"layout\";\n@import \"syntax-highlighting\";\n"
  },
  {
    "path": "source/feed.xml",
    "chars": 1291,
    "preview": "---\nlayout: null\n---\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<rss version=\"2.0\" xmlns:atom=\"http://www.w3.org/2005/Atom\">"
  },
  {
    "path": "source/index.html",
    "chars": 687,
    "preview": "---\nlayout: default\ntitle: Home\n---\n\n{% include intro.html %}\n\n<section class=\"post-list\">\n  <div class=\"container\">\n\n  "
  },
  {
    "path": "travisGemfile",
    "chars": 255,
    "preview": "# If you have OpenSSL installed, we recommend updating\n# the following line to use \"https\"\nsource 'http://rubygems.org'\n"
  }
]

About this extraction

This page contains the full source code of the nandomoreirame/simplest GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 45 files (54.2 KB), approximately 17.3k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!