Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/seanlane/gochowdown.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCasper Meijn <casper@meijn.net>2021-05-04 22:15:53 +0300
committerCasper Meijn <casper@meijn.net>2021-05-04 22:15:53 +0300
commitc0c75a3b36ef233b0272b21b10a181809d13ea5e (patch)
tree86a90cb65dac5e3d5d9a3330aaff35e3d2b14432 /layouts/recipes
parentd207f64f7a9d9ab8e81d2244ec358afb168b8fab (diff)
i18n: Move parameter to translation
Diffstat (limited to 'layouts/recipes')
-rw-r--r--layouts/recipes/single.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/layouts/recipes/single.html b/layouts/recipes/single.html
index 1aae1a5..c2078f3 100644
--- a/layouts/recipes/single.html
+++ b/layouts/recipes/single.html
@@ -30,17 +30,17 @@
<div class="clearfix mt3">
{{ with .Params.yield }}
<div class="sm-col sm-col-2">
- <h4 class="blue mt0 mb2 xs-center">{{ i18n "yields" }}: {{ . }}</h4>
+ <h4 class="blue mt0 mb2 xs-center">{{ i18n "yields" . }}</h4>
</div>
{{ end }}
{{ with .Params.prepTime }}
<div class="sm-col sm-col-2">
- <h4 class="blue mt0 mb2 xs-center">{{ i18n "prepTime" }}: {{ . }}</h4>
+ <h4 class="blue mt0 mb2 xs-center">{{ i18n "prepTime" . }}</h4>
</div>
{{ end }}
{{ with .Params.cookTime }}
<div class="sm-col sm-col-2">
- <h4 class="blue mt0 mb2 xs-center">{{ i18n "cookTime" }}: {{ . }}</h4>
+ <h4 class="blue mt0 mb2 xs-center">{{ i18n "cookTime" . }}</h4>
</div>
{{ end }}
</div>