shithub: hugo

Download patch

ref: a4da52622c6b34d995fe51646fb3f015e9bd0aa5
parent: 508788e6949a51b76af15eb4570e4d73e7c7b09b
author: Tomas Roos <ptomasroos@gmail.com>
date: Fri Jan 16 05:33:20 EST 2015

Missing . on footer partials

--- a/docs/content/templates/list.md
+++ b/docs/content/templates/list.md
@@ -121,7 +121,7 @@
       </div>
     </section>
 
-    {{ partial "footer.html" }}
+    {{ partial "footer.html" . }}
 
 ### Example taxonomy template (tag.html)
 This content template is used for [spf13.com](http://spf13.com).
@@ -141,7 +141,7 @@
       </div>
     </section>
 
-    {{ partial "footer.html" }}
+    {{ partial "footer.html" . }}
 
 ## Ordering Content
 
--