From f6329f3e37d45460dfd4b476fd4e5a6020e32332 Mon Sep 17 00:00:00 2001
From: Jack Jackson <scubbojj@gmail.com>
Date: Wed, 02 Feb 2022 16:05:42 +0000
Subject: [PATCH] Use i18n string for taxonomy layout (#500)
---
layouts/_default/taxonomy.html | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/layouts/_default/taxonomy.html b/layouts/_default/taxonomy.html
index 6741379..33d8efb 100644
--- a/layouts/_default/taxonomy.html
+++ b/layouts/_default/taxonomy.html
@@ -1,10 +1,10 @@
{{ define "main" }}
<article class="cf pa3 pa4-m pa4-l">
<div class="measure-wide-l center f4 lh-copy nested-copy-line-height nested-links nested-img {{ $.Param "text_color" | default "mid-gray" }}">
- <p>Below you will find pages that utilize the taxonomy term “{{ .Title }}”</p>
+ <p>{{ i18n "taxonomyPageList" . }}</p>
</div>
</article>
- <div class="mw8 center">
+ <div class="mw8 center">
<section class="flex-ns flex-wrap justify-around mt5">
{{ range .Pages }}
<div class="relative w-100 mb4 bg-white">
--
Gitblit v1.10.0