Add grid-side theme

This commit is contained in:
2016-06-05 23:48:51 +01:00
commit 6db68a7341
266 changed files with 14033 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{{ $url := $.Site.BaseURL }}
{{ $image := .Params.image | urlize }}
{{ $date := .Date.Format "Mon Jan 02, 2006" }}
{{ $title := .Title }}
<!-- TODO: Figure out why line height causes issues here -->
<div class="flex-item flex-item-spacing no-line-height">
<div class="relative rounded-corners z-depth-1 lazyload" data-noscript="">
<noscript>
<a href="{{ $url }}{{ $image }}" data-lightbox="gallery" data-title="{{ $title }}">
<img src="{{ $url }}{{ $image }}"
class="fill-container-width rounded-corners z-depth-1" />
<div class="highlight-block rounded-corners">
<h3 class="white-text">{{ $date }}</h3>
</div>
</a>
</noscript>
</div>
</div>