summaryrefslogtreecommitdiff
path: root/_layouts/blog.liquid
blob: 0734bb3f5af6077425f961628ed4a9878a980fff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
  <head>
    <title>{{ page.title }}</title>
    <link rel="stylesheet" href="/styles/blog.css" />
    {% include "meta.liquid" %}
  </head>
  <body class="has-navbar-fixed-top is-size-4-desktop">
    {% include "nav.liquid" %}

    <section class="section">
      <div class="container">
        <div class="columns">
          <div class="column">
            <div class="columns is-multiline is-centered">
              {% for post in collections.posts.pages %} {% if post.categories[0]
              != "announcement" %}
              <div class="column">
                {% include "post-card.liquid" %}
              </div>
              {% endif %} {% endfor %}
            </div>
          </div>
          <div class="column is-narrow">
            {% include "social-sidebar.liquid" %}
          </div>
        </div>
      </div>
    </section>

    {% include "footer.liquid" %}

    <script src="/scripts/iconify.min.js" type="text/javascript"></script>
  </body>
</html>