layout: default


{% include header.html %}

{% if site.github_fork_banner %}
<a class="github-fork-ribbon fixed" href="{{ site.github_fork_banner }}" target="_blank" data-ribbon="Fork me on GitHub" title="Fork me on GitHub">
  Fork me on GitHub
</a>
{% endif %}
<div data-component="Content" class="content">
  <div class="home-content w-container">
    {% for taxonomy in site.taxonomies %}
    {% if site.categories[taxonomy].size > 0 %}
    <a href="/{{ taxonomy }}">
      <h1 class="heading-5">Recent {{ taxonomy | capitalize }}</h1>
    </a>
    <div class="sample-blog">
      {% for page in site.categories[taxonomy] limit:3 %}
      <div class="post-container">
        {% if page.featured-img %}
        <div class="post-background" style="background-image: url('{{ site.url }}{{ site.baseurl }}/assets/images/{{ page.featured-img }}')"></div>
        {% else %}
        <div class="post-background"></div>
        {% endif %}
        <a href="{{ page.url }}" class="post w-inline-block">
          <h3 class="heading-2 post-title">{{ page.title }}</h3>
          <h5 class="heading-2 post-meta">
            {{ page.date | date: "%b %-d" }}  • {{ page.content | read_time_short }}
          </h5>
          <h5 class="heading post-description">{{ page.excerpt | truncatewords: 18 }}</h5>
        </a>
      </div>
      {% endfor %}
    </div>
    {% endif %}
    {% endfor %}
    <h1 class="heading-3">Tools and Experience</h1>
    <div class="experience">
      {% for skill in site.skills %}
      <a class="experience-item" title="{{ skill.title }}" target="_blank" href="{{ skill.href }}">
        <i class="devicon-{{ skill.icon }} {% if skill.colored %}colored{% endif %}"></i>
      </a>
      {% endfor %}
    </div>
  </div>
</div>

{% include footer.html %}