We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd3e731 commit 05deadfCopy full SHA for 05deadf
2 files changed
assets/theme-css/posts.css
@@ -85,6 +85,10 @@ div.MathJax_Display {
85
margin: 0.5em;
86
}
87
88
+.read-more {
89
+ font-style: italic;
90
+}
91
+
92
.tag-cloud {
93
position: sticky;
94
align-self: flex-start;
layouts/partials/posts/summary.html
@@ -3,5 +3,8 @@
3
{{ with $featuredImage }}
4
<img src="{{ .RelPermalink }}" {{ if .Params.description }}alt="{{ .Params.description }}"{{ end }}/>
5
{{ end }}
6
- {{ .Summary }}
+ {{ strings.Chomp .Summary }}
7
+ <span class="read-more">
8
+ <a href="{{ .RelPermalink }}">Read more...</a>
9
+ </span>
10
</div>
0 commit comments