summaryrefslogtreecommitdiff
path: root/_layouts/blog.liquid
blob: 3f94bd86505110a7dceecab9136051da88f0c8c7 (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
<!DOCTYPE html>
<html lang="en">
  <head>
    <title>{{ page.title }}</title>
    <link rel="stylesheet" href="/styles/main.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 %}
              <div class="column">
                {{ post.title }}
              </div>
              {% endfor %}
            </div>
          </div>
          <div class="column is-narrow">
            {% include "social-sidebar.liquid" %}
          </div>
        </div>
      </div>
    </section>
    <script src="/scripts/iconify.min.js" type="text/javascript"></script>
  </body>
</html>