layout: empty permalink: /widget/


<head>

{% include meta.html %}

</head>

<body>

<div class="logchimp">
  <h3 class="logchimp-heading">
    {{ site.terminology }}
  </h3>
  <div class="logchimp-list">
    {% for post in site.posts limit: site.widget.loglimit %}
      <a href="{{ post.url | relative_url }}?source=widget" target="blank" class="logchimp-item">
        {% if post.category %}
          {% for categoryMeta in site.data.badge.category %}
            {% if post.category == categoryMeta.name %}
              <div class="logchimp-item-category" style="background-color: #{{ categoryMeta.color }}">
                {{ post.category }}
              </div>
            {% endif %}
          {% endfor %}
        {% endif %}
        <strong class="logchimp-item-title">{{ post.title }}.</strong>
        <div class="logchimp-item-description">
          {{ post.content | strip_html | truncate: 95 }}
        </div>
      </a>
    {% endfor %}
  </div>
  <div class="logchimp-seemore">
    <a target="blank" href="{{ site.url }}">{{ site.title }}</a> powered by <a target="blank" href="https://logchimp.now.sh/">LogChimp</a>
  </div>
</div>

</body>