I would not recommend checking for hardcoded strings…
Just tested the following at layouts/partials/head.html
:
{{ if eq .Kind "taxonomyTerm"}}
<meta name="testing" content="This is a taxonomyTerm page">
{{ else if eq .Kind "taxonomy" }}
<meta name="testing" content="This is a taxonomy page">
{{ end }}
Here it is running locally…