diff options
| author | Benjamin Sanders <ben@Benjamins-MacBook-Pro.local> | 2025-05-17 11:11:12 -0400 |
|---|---|---|
| committer | Benjamin Sanders <ben@Benjamins-MacBook-Pro.local> | 2025-05-17 11:11:12 -0400 |
| commit | 186466da5948ca3ca88f2ecd04a9ff05a89a73a9 (patch) | |
| tree | b0b4b8f4b9da52464b06f685834d21db6bb8cb90 /_layouts | |
| parent | 71c251b934b7510345c6f9dcbd9d89a5e810b64b (diff) | |
added .html to blog article links as well for now
Diffstat (limited to '_layouts')
| -rw-r--r-- | _layouts/blog.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_layouts/blog.html b/_layouts/blog.html index a35ef2a..7104a1a 100644 --- a/_layouts/blog.html +++ b/_layouts/blog.html @@ -4,7 +4,7 @@ {% include nav.html %} <ul class="posts"> {% for post in site.posts %} - <li><span>{{ post.date | date_to_long_string }}</span> <a href="{{ post.url | prepend: site.baseurl}}" title="{{ post.title }}">{{ post.title }}</a></li> + <li><span>{{ post.date | date_to_long_string }}</span> <a href="{{ post.url | prepend: site.baseurl}}.html" title="{{ post.title }}">{{ post.title }}</a></li> {% endfor %} </ul> </div> |
