diff options
author | Adam T. Carpenter <atc@53hor.net> | 2021-06-14 22:11:50 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2021-06-14 22:11:50 -0400 |
commit | 3df910b359125d35ca71f4e9419b0bd41d56718c (patch) | |
tree | 5820c70c948223d4dcbb329cb05c25b94859a47a /_includes/post-card.liquid | |
parent | 7a21088226eb6be30e72ec99f695c70e93a76173 (diff) | |
download | carpentertutoring-3df910b359125d35ca71f4e9419b0bd41d56718c.tar.xz carpentertutoring-3df910b359125d35ca71f4e9419b0bd41d56718c.zip |
stripping bulma and cobalt; uneeded at this point
Diffstat (limited to '_includes/post-card.liquid')
-rw-r--r-- | _includes/post-card.liquid | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/_includes/post-card.liquid b/_includes/post-card.liquid deleted file mode 100644 index 8e2a0a7..0000000 --- a/_includes/post-card.liquid +++ /dev/null @@ -1,39 +0,0 @@ -<div class="card"> - <div class="card-header"> - <div class="card-header-title"> - <h1 class="subtitle"> - {{ post.title }} - </h1> - </div> - </div> - {% if post.data.coverImage %} - <div class="card-image"> - <figure class="image is-4by3"> - <picture> - <source srcset="{{post.data.coverImage}}.webp" type="image/webp" /> - <source srcset="{{post.data.coverImage}}.png" type="image/png" /> - <img src="{{post.data.coverImage}}.png" /> - </picture> - </figure> - </div> - {% endif %} - <div class="card-content"> - <div class="content"> - {{ post.content | truncatewords: 20 }} - <a target="_blank" href="{{ post.permalink}}"> - <span class="icon"> - <i class="iconify" data-icon="open-in-new"></i> - </span> - Read more - </a> - </div> - </div> - <div class="card-footer"> - <div class="card-footer-item"> - Share on LinkedIn - </div> - <div class="card-footer-item"> - Share on Facebook - </div> - </div> -</div> |