Sha256: e7f8bfc6767332a9030278d1db185e69b1b018fd253b4f4d0fe3c92ae1d5be1f

Contents?: true

Size: 1.16 KB

Versions: 2

Compression:

Stored size: 1.16 KB

Contents

<footer class="footer">
  <div class="columns">
    <div class="column">
      <h1 class="is-title">Meta</h1>
      <a href="#">Imprint</a>
    </div>

    <div class="column">
      <h1 class="is-title">Latest Posts</h1>
      {%- for post in site.posts limit:5 -%}
        <a href="{{ post.url | prepend: site.baseurl }}">
          {{ post.title | truncate: 35 }}
        </a>
      {%- endfor -%}
    </div>

    <div class="column">
      <h1 class="is-title">Title</h1>
      <a href="#">Link</a>
    </div>

    <div class="column">
      <h1 class="is-title">Title</h1>
      <ul>
        <li>
          <span class="icon">
            <i class="fas fa-envelope"></i>
          </span>
          mail@example.com
        </li>
        <li>
          <span class="icon">
            <i class="fab fa-twitter"></i>
          </span>
          @twitter-handle
        </li>
      </ul>
    </div>
  </div>

  <div class="has-text-centered">
    {{ site.title }} | &nbsp;
  </div>
</footer>

{%- if page.custom_js -%}
  {%- for js_file in page.custom_js -%}
    <script src='{{ site.url }}/js/{{ js_file }}.js'
            type="text/javascript"></script>
  {%- endfor -%}
{%- endif -%}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jekyll-bulma-0.1 _includes/footer.html
jekyll-bulma-0.0.3 _includes/footer.html