Преглед на файлове

Replacing deprecated function call with now preferred version (#39)

Using the old call was producing the following Warning:

WARNING: Page's Now is deprecated and will be removed in a future
release. Use now (the template func).
Oliver Schneider преди 7 години
родител
ревизия
6404f691fa
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1
    1
      layouts/partials/sidebar.html

+ 1
- 1
layouts/partials/sidebar.html Целия файл

@@ -14,6 +14,6 @@
14 14
       {{end}}
15 15
     </ul>
16 16
 
17
-    <p>{{ with .Site.Params.copyright }}{{.}}{{ else }}&copy; {{.Now.Format "2006"}}. All rights reserved. {{end}}</p>
17
+    <p>{{ with .Site.Params.copyright }}{{.}}{{ else }}&copy; {{ now.Format "2006"}}. All rights reserved. {{end}}</p>
18 18
   </div>
19 19
 </div>