Skip to content

Commit

Permalink
Correct misspelling of summary in layout files
Browse files Browse the repository at this point in the history
  • Loading branch information
blueyetisoftware-jason committed Jun 30, 2020
1 parent c49a06f commit 22a7ac4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion layouts/partials/about.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="container anchor p-md-5" id="{{ replace (lower .section.name) " " "-" }}">
<div id="about-template">
<div class="row pt-sm-2 pt-md-4 align-self-center">
<!-- summery -->
<!-- summary -->
<div class="col-md-6">
<h3 class="p-1">{{ site.Params.author.name }}</h3>
{{ if .designation }}
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/cards/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</div>
<div class="card-body">
<h5 class="card-title">{{ .Title }}</h5>
<p class="card-text post-summery">{{ .Summary }}</p>
<p class="card-text post-summary">{{ .Summary }}</p>
</div>
<div class="card-footer">
<span class="float-left">{{ .Date.Format "January 2, 2006" }}</span>
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/cards/recent-post.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</div>
<div class="card-body">
<h5 class="card-title">{{ .Title }}</h5>
<p class="card-text post-summery"> {{ .Summary }}</p>
<p class="card-text post-summary"> {{ .Summary }}</p>
</div>
<div class="card-footer">
<span class="float-left">{{ .Date.Format "January 2, 2006" }}</span>
Expand Down
2 changes: 1 addition & 1 deletion static/assets/css/list.css
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ a.focused {
margin-top: auto;
}

.post-summery {
.post-summary {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
Expand Down
2 changes: 1 addition & 1 deletion static/assets/css/recent-posts.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
text-decoration: none;
}

.post-summery {
.post-summary {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
Expand Down

0 comments on commit 22a7ac4

Please sign in to comment.