Welcome to mirror list, hosted at ThFree Co, Russian Federation.

post.html « _default « layouts - github.com/themefisher/kross-hugo-portfolio-template.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6ea9a1f8d29cb4e74a328714b2ffeef8ace97bab (plain)
1
2
3
4
5
6
7
8
9
10
11
<div class="col-lg-4 col-sm-6 mb-4">
  <article class="card shadow">
    <img class="rounded card-img-top" src="{{.Params.Image | relURL}}" alt="{{.Title }}">
    <div class="card-body">
      <h4 class="card-title"><a class="text-dark" href="{{.Permalink}}">{{.Title }}</a>
      </h4>
      <p class="cars-text">{{.Summary}}</p>
      <a href="{{.Permalink}}" class="btn btn-xs btn-primary">Read More</a>
    </div>
  </article>
</div>