Skip to content

Commit ef7c392

Browse files
committed
Fixed NULL a href for the author and date
Signed-off-by: Steve Scargall <[email protected]>
1 parent f463027 commit ef7c392

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

themes/memmachine/layouts/_partials/blog-card.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@
2626

2727
<div class="card-date">
2828
{{ with .Params.author }}
29-
<h6><a href="#">{{ . }}</a></h6>
29+
<h6>{{ . }}</h6>
3030
<svg width="2" height="2" viewBox="0 0 2 2" fill="none" xmlns="http://www.w3.org/2000/svg">
3131
<path d="M1.374 1.862C1.194 1.862 1.04 1.802 0.912 1.682C0.784 1.558 0.72 1.404 0.72 1.22C0.72 1.036 0.784 0.884 0.912 0.764C1.04 0.64 1.194 0.578 1.374 0.578C1.546 0.578 1.692 0.64 1.812 0.764C1.936 0.884 1.998 1.036 1.998 1.22C1.998 1.404 1.936 1.558 1.812 1.682C1.692 1.802 1.546 1.862 1.374 1.862Z" fill="#A6A6C9"></path>
3232
</svg>
3333
{{ end }}
3434
<p style="margin: 0">
35-
<a href="#">{{ .Date.Format "January 2, 2006" }}</a>
35+
{{ .Date.Format "January 2, 2006" }}
3636
</p>
3737
</div>
3838

0 commit comments

Comments
 (0)