Skip to content

Commit

Permalink
Fix post uri
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisongthb committed Feb 22, 2024
1 parent 9d889c7 commit b74b3bb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion source/_layouts/nobutthehome.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ <h1>Hallo und Herzlich Willkommen</h1>
<ul>
{% for post in site.posts %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
<!--
see also
* https://jekyllrb.com/docs/variables/
* github workflow: bundle exec jekyll build --baseurl <github variable>
-->
<a href="{{site.baseurl}}{{post.url}}">{{ post.title }}</a>
{{ post.excerpt }}
</li>
{% endfor %}
Expand Down

0 comments on commit b74b3bb

Please sign in to comment.