layout: default title: Recent Weather Page permalink: /recent/


<div id=“recent”>

<div>
  <h1>🌦 Recent Weather</h1>
  <div class="leader">
    <div class="infobox">
      <p class="title">Weather Statuses</p>
      <p>🌤 Created</p>
      <p>🌧 Updated</p>
      <p style="color: grey;"><em>🌩 Deleted (Currently not active)</em></p>
    </div>
    <p>
      Instead of a 'forecast' looking into the future, these are 'backcasts' peering into recent history. 
      It's featured posts, but version controlled. It's a feed, without infinite scroll. It's releases, with a chance of rain.
    </p>
  </div>
</div>

<div>
  <h2 style="text-align: left; padding-bottom: 24px; padding-top: 24px;">Posts</h2>
  {% assign recent_posts = site.posts | recent: site.recent_num %}
  <ul class="recent-list">
    {% for post in recent_posts %}
      <li class="recent-list-item">
        <a class="wiki-link" href="{{ post.url | relative_url }}">{{ post | weather }} {{ post.title }}</a>
        <span class="date-updated">{{ post.updated | date: "%Y-%m-%d" }}</span>
      </li>
    {% endfor %}
  </ul>

  <h2 style="text-align: left; padding-bottom: 12px;">Entries</h2>
  {% assign recent_entries = site.entries | recent: site.recent_num %}
  <ul class="recent-list">
    {% for entry in recent_entries %}
      <li class="recent-list-item">
          <a class="wiki-link" href="{{ entry.url | relative_url }}">{{ entry | weather }} {{ entry.title }}</a>
          <span class="date-updated">{{ entry.updated | date: "%Y-%m-%d" }}</span>
      </li>
    {% endfor %}
  </ul>
</div>

</div>