<head>

<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">

<script>

WebFontConfig = {
  google: {
   families: ['Inconsolata:400,700']
  }, async:true
};

(function(d) {
  var wf = d.createElement('script'), s = d.scripts[0];
  wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js';
  wf.async = true;
  s.parentNode.insertBefore(wf, s);
})(document);

</script>

<style>

  .wf-active body{
    font-family: 'Inconsolata'
  }

  body{
    font-family: monospace;
    font-size: 100%;
    max-width: 75%;
    margin: 0 auto;
    padding-top: 20px;
    background-color: #282c34;
    color: #abb2bf;
    line-height: 1.375
  }

  blockquote {
    color: #ccc;
  }
  code.highlighter-rouge{
    color: #ccc;
    background-color: #111;
    background: repeating-linear-gradient(#111, #111 3px, #f22 3px, #f22 10px);
    background-size:5px auto;
    padding: 2px;
    border-radius: 2px;
  }
  pre {
    color: #ccc;
    padding: 20px;
    border-radius: 6px;
    overflow-x: auto;
    background-color: #111;
    background: repeating-linear-gradient(#111, #111 3px, #f22 3px, #f22 10px);
    background-size:5px auto;
  }

  h1, h2, h3, h4, h5, h6 {font-size: 100%}
  h1 {color: #b36ec8;}
  h2 {color: #e06c75;}
  h3 {color: #dfbb78;}
  h4 {color: #98c379;}
  h5 {color: #c1c3ca;}

  a {text-decoration: none;}
  a {color: #52a9b5;}
  a:hover {color: #427c86}

  .post-content a {text-decoration: underline}

  hr{
    border: none;
    border-top: 1px solid #686f7b
  }

  .site-title {
    font-weight: bold;
    padding-bottom: 10px;
    display: inline-block;
    color: #e06c75 !important;
  }
  .post-title{
    color: #cb9663 !important;
  }
  .footer-heading {
    color: #dfbb78 !important
  }

  .post-meta {
    color: #c1c3ca;
  }

  th { color: #c1c3ca;}

  strong {
    color: #b36ec8;
  }
  img {
    max-width: 100%
  }

/* gist */

/* Customizzazione di Ale */
/* colore bordo */
.gist-file { border: none !important;}
/* colore sfondo */
.gist-meta { background-color: #111 !important; color: #5c6370}
.gist-data {
  border: none !important;
  background-color: inherit !important;
 }

/* Gist Embed - Dark Theme Styling - Thanks to MattD */

/* Body */
.gist-data tbody { background-color: #111; }
/* Line Numbers */
.gist-data tbody td:nth-of-type(1) { color: #52a9b5 !important;}
/* Code */
.gist-data tbody td:nth-of-type(2){ color: #ccc !important;}
/* Comments */
.pl-c { color: #98c379 !important; }
/* Function */
.pl-k, tbody tr:first-child .blob-code, tbody tr:last-child .blob-code{ color: #427c86 !important; }
/* Function Name */
.pl-en { color: #ccc !important; }
/* Function Method */
.pl-c1 { color: #ccc !important; }
/* "'s around Strings */
.pl-pds { color: #dfbb78 !important; }
/* Strings */
.pl-s { color: #dfbb78 !important; }
.pl-smi{ color: #ccc !important; }
/* Variables */
.pl-e { color: #b36ec8 !important}
/* Tags */
.pl-ent { color: #98c379 !important}

</style>

<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 }}">

{% seo title=false %}

</head>