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

github.com/mcrwfrd/hugo-frances-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormcrwfrd <mcrwfrd@gmail.com>2019-07-12 21:59:11 +0300
committermcrwfrd <mcrwfrd@gmail.com>2019-07-12 21:59:11 +0300
commit82db0539321d1fe8749c06fc1e8183eec9398855 (patch)
tree51a252b57dfe7a2f4858382228880a608723bb20
parentb3607de9aa1b01cd316767a4ff438a13be0c2f4b (diff)
Remove click-through button from posts list
-rw-r--r--layouts/_default/list.html10
1 files changed, 3 insertions, 7 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index d826bee..5463ea6 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -18,16 +18,12 @@
<div class="row">
<div class="col-md-8">
{{ range .Data.Pages }}
+ <section class="section pt-1">
<h4 class=""><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>
- {{ end }}
- </div>
- <div class="col-md-4 text-center drag-lg-top">
- <div class="shadow-down mb-4">
- </div>
- <h4>{{ .Params.Author }}</h4>
+ </section>
+ {{ end }}
</div>
</div>
</div>