Upgrade broke tag page rendering

I just upgraded from v0.63.0-DEV to v0.75.0-DEV. (I also moved to a different EC2 instance, but I don’t think that’s the issue.) After the move, the pages that render my individual tags aren’t working.

Maybe easier to see it than to explain it.

Works (old): http://old.scholvin.com/tags/ragnar
Broke (new): http://scholvin.com/tags/ragnar

The old tag page links to all the correct posts; the new one just doesn’t have anything there.

Any ideas how to debug this?

Maybe it’s related to some of the changes in v0.73.0? It’s just a guess since I don’t know the code.

Hmm. Maybe? I just looked at those release notes and it doesn’t look like this would be affected. The only thing in my config.toml that I think would be relevant is

[taxonomies]
    tag = "tags"

and it looks like nothing there changed, but I could be reading the docs wrong.

But what about your list template?

That’s the same template that generates the front page and the “all posts” page, so I think it should be OK?

It would be easier to help you if we could see your code, not just the generated sites.

Here is the list.html file, which I believe is the relevant code (I’m fairly new at this). It’s from an earlier version of the vitae theme. And apologies for the large paste; if there’s a preferred way to do that here, let me know.

<!DOCTYPE html>
<html>
{{ partial "header.html" . }}
<body>
	<div class="container wrapper list">
		{{ partial "head.html" . }}
		{{ if isset .Data "Term" }}
			<h2>{{ .Data.Term }}</h2>
		{{ else }}
			<h2 class="page-title">{{ .Title }}</h2>
		{{ end }}
		<ul class="posts flat">
			{{- range .Data.Pages -}}
			{{- if (in (.Site.Params.excludedTypes | default (slice "page")) .Type) -}}
			{{- else -}}
			<li class="post">
				<div class="post-header">
					<div class="meta">
						<div class="date">
							<span class="day">{{ dateFormat "02" .Date }}</span>
							<span class="rest">{{ if $.Site.Data.month }}{{ index $.Site.Data.month (printf "%d" .Date.Month) }} {{ .Date.Year }}{{ else }}{{ dateFormat "Jan 2006" .Date }}{{ end }}</span>
						</div>
					</div>
					<div class="matter">
						<h3 class="title small">
							<a href="{{ .RelPermalink }}">{{.Title}}{{ if .Draft }}<sup class="draft-label">DRAFT</sup>{{ end }}</a>
						</h3>
						<span class="description">
							{{ if isset .Params "description" }}
								{{ .Description }}
                            {{ else }}
                                {{ $tease := .RawContent | markdownify | plainify | replaceRE "{{.*}}" "" }}
                                {{ if gt (len $tease) 250 }}
                                    {{ slicestr $tease 0 250 }}...
                                {{ else }}
                                    {{ $tease }}
                                {{ end }}
                            {{ end }}
						</span>
					</div>
				</div>
			</li>
			{{- end -}}
			{{- end -}}
		</ul>
	</div>
	{{ partial "footer.html" . }}
</body>
</html>

Actually, nevermind. Updating the theme seems to take care of the problem. Thanks to everyone who looked at this.