Переглянути джерело

Fixes #41: Use site.baseurl on blog post titles

Mark Otto 10 роки тому
батько
коміт
14abedd943
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      index.html

+ 1 - 1
index.html

@@ -7,7 +7,7 @@ title: Home
   {% for post in paginator.posts %}
   <div class="post">
     <h1 class="post-title">
-      <a href="{{ post.url }}">
+      <a href="{{ site.baseurl }}{{ post.url }}">
         {{ post.title }}
       </a>
     </h1>