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

github.com/mattstratton/castanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Stratton <matt.stratton@gmail.com>2017-06-10 04:19:17 +0300
committerMatt Stratton <matt.stratton@gmail.com>2017-06-10 04:19:17 +0300
commit8303698d93f563ab9227bec9fc79fe79c74a88cf (patch)
tree8cfe19dc17f75e4bf0560535df41bc55933a88b2 /layouts/partials
parent13e0186bc3d488abfd5178bc2ada050289f7e44c (diff)
Fix mismatch truncate. Fixes #115
Diffstat (limited to 'layouts/partials')
-rw-r--r--layouts/partials/row.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/row.html b/layouts/partials/row.html
index 282ede3..acc550d 100644
--- a/layouts/partials/row.html
+++ b/layouts/partials/row.html
@@ -79,7 +79,7 @@
{{- else -}}
<div class = "col">
{{- if ge (countrunes .Description ) 600 -}}
- <p class = "hompage_episode_description">{{ .Description | markdownify | truncate 900 " "}}&nbsp;<small><a href = "{{ .Permalink }}">Read More</a></small></p>
+ <p class = "hompage_episode_description">{{ .Description | markdownify | truncate 600 " "}}&nbsp;<small><a href = "{{ .Permalink }}">Read More</a></small></p>
{{- else -}}
<p class = "hompage_episode_description">{{ .Description | markdownify }}</p>
{{- end -}}