Skip to content

Instantly share code, notes, and snippets.

@DilionsCode
Created June 24, 2021 17:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DilionsCode/ef5b8527fe19f42b043cbd4c395e6654 to your computer and use it in GitHub Desktop.
Save DilionsCode/ef5b8527fe19f42b043cbd4c395e6654 to your computer and use it in GitHub Desktop.
{{#get "posts" limit="6"}}
<div class="post-container w-container">
<div class="post-row w-row">
{{#foreach posts}}
<div class="post-column blog-post" style="float: left;">
<div class="post">
<a href="{{url absolute=true}}" class="post-link w-inline-block">
<div class="post-image-container">
<figure>
<img src="{{feature_image}}" sizes="(max-width: 479px) 90vw, (max-width: 767px) 358.96875px, (max-width: 991px) 35vw, 34vw" alt="" class="">
</figure>
</div>
<div class="post-description-container">
<h3 class="blog-post-title">{{title}}</h3>
<p class="post-description">{{excerpt words="26"}}</p>
</div>
</a>
<div class="post-category-type" data-ix="catagories-hover">
<div class="category-row">
<a href="#" class="category w-inline-block">
<div class="category-label">Technology</div>
</a>
</div>
</div>
</div>
</div>
{{#has index="2"}}
</div>
</div>
<div class="post-container w-container">
<div class="post-row w-row">
{{/has}}
{{/foreach}}
</div>
</div>
{{/get}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment