Creating lists of pages from taxonomies/terms

Hi,

I’ve managed to implement tags on my website, they’re collected and counted. However, when I click on a tag, the site loads an empty page and what I want is a sublist of pages relating to that tag.

Here’s my repo: https://github.com/NickWerren/QC_container/

I’ve been reading through the Hugo documentation, although it looks like this should be a simple thing to implement I’m having a bit of trouble navigating how Hugo builds this particular part of the website.

Any advice? I’m sure this is a simple one line solution!

Thanks!

You’ve got a big issue at the top of every page:

  <link rel="stylesheet" href='https://fonts.googleapis.com/css?family=Cabin|Source+Serif+Pro|Droid+Sans+Mono|Source+Serif+Pro' />
  <style> html {font-family: 'Cabin', sans-serif; font-family: 'Source Serif Pro', serif; } </style>
  <style> body {font-family: 'Cabin', sans-serif; font-family: 'Source Serif Pro', serif; } </style>
  <style> h1 {font-family: 'Cabin', sans-serif; font-family: 'Source Serif Pro', serif; } </style>
  <style> h2 {font-family: 'Cabin', sans-serif; font-family: 'Source Serif Pro', serif; } </style>
  <style> h3 {font-family: 'Cabin', sans-serif; font-family: 'Source Serif Pro', serif; } </style>
  <style> h4 {font-family: 'Cabin', sans-serif; font-family: 'Source Serif Pro', serif; } </style>
  <style> h5 {font-family: 'Cabin', sans-serif; font-family: 'Source Serif Pro', serif; } </style>
  <style> h6 {font-family: 'Cabin', sans-serif; font-family: 'Source Serif Pro', serif; } </style>
  <style> pre {font-family: 'Droid Sans Mono', monospace; font-family: 'Source Serif Pro', serif; } </style>
  <style> code {font-family: 'Droid Sans Mono', monospace; font-family: 'Source Serif Pro', serif; } </style>   


<!DOCTYPE html>
<html lang="en">

doctype should be the first line.

As for your tags not showing up, everywhere you have .Data.Terms, try replacing with .Data.Pages, see what happens. I don’t think that loads content for a specific term, but .Data.Pages should.