hi,
I have two websites, where config.toml looks like this
baseURL = '/'
languageCode = 'fr-fr'
title = 'website title'
type="page"
theme = "hello-friend"
[menu]
[sitemap]
changefreq = "monthly"
filename = "sitemap.xml"
priority = 0.5
[languages.en.params.logo]
logoText = "websitetitle"
logoHomeLink = "/"
centerTheme = true
[[menu.main]]
identifier = "principal"
name="1. Notre activité, nos offres"
url="/posts/principal"
weight = 1
and content/ index.md plus posts/principal.md looks like this:
title: "this page"
draft: false
type: "page"
layout: "simple-static"
framed : "true"
Description : "website desc"
Tags :
- abc
- def
keywords :
- abc
- def
and this looks like to be (perfectly) working, I guess (not sure, Im not SEO expert)
but on another one,
where index.md looks like:
title: "Offres et activités"
draft: false
type: "page"
layout: "simple-static"
framed : "true"
description : "desc"
and a content/posts/page.md looks like:
title: "Nos compétences"
draft: false
type: "page"
layout: "simple-static"
description : "website desc"
Tags :
- abc
- def
keywords :
- abc
- def
well, the tags appears like hashtag listed under the paragraph… like the screenshot… how could I avoid/hide those without deleting them?
thank you