Kaynağa Gözat

Make tags indices URL absolute

Javier Olaechea 11 yıl önce
ebeveyn
işleme
221a9cbe86
2 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  1. 1 1
      themes/hyde/post.tmpl
  2. 1 1
      themes/readable/post.tmpl

+ 1 - 1
themes/hyde/post.tmpl

@@ -6,7 +6,7 @@
6 6
   <div class="tags">{\n}
7 7
     {if $post.tags}
8 8
       Tagged as {foreach $tag in $post.tags}
9
-        <a href="../tag/{$tag.slug}.{$config.pageExt}">{$tag.name}</a>{nil}
9
+        <a href="{$config.domain}/tag/{$tag.slug}.{$config.pageExt}">{$tag.name}</a>{nil}
10 10
           {if not isLast($tag)},{sp}{/if}
11 11
       {/foreach}
12 12
     {/if}

+ 1 - 1
themes/readable/post.tmpl

@@ -6,7 +6,7 @@
6 6
   <p>
7 7
     {if $post.tags}
8 8
       Tagged as {foreach $tag in $post.tags}
9
-        <a href="../tag/{$tag.slug}{$config.pageExt}">{$tag.name}</a>{nil}
9
+        <a href="{$config.domain}/tag/{$tag.slug}{$config.pageExt}">{$tag.name}</a>{nil}
10 10
           {if not isLast($tag)},{sp}{/if}
11 11
       {/foreach}
12 12
     {/if}