I don't think there's a way to list all tags for our blog posts. You have to check each one from the bottom of any blog post to see if they have other content. Idk if we need a full page for this, or just a small section in the blog home showing a tag cloud (larger words for tags used the most).
From https://github.com/iterative/dvc.org/pull/1505#discussion_r465259532:
tags serve two goals - navigation (and we want to keep them sane for this), and SEO (keywords in meta...
So this feature would help the navigation part.
Cc @shcheklein @rogermparent @elleobrien @dmpetrov
from https://github.com/iterative/dvc.org/pull/1505#discussion_r465259532 by @shcheklein
tags serve two goals - navigation (and we want to keep them sane for this), and SEO (keywords in meta - I haven't checked this, but I hope it still works or we need to fix this). For SEO we want to include things that people will use to search - "Python CLI autocomplete", etc. Thus we need to have a good balance. No need to optimize tags just for the sake of trying to keep them to the minimum.
from https://github.com/iterative/dvc.org/pull/1505#discussion_r465262427 by @jorgeorpinel
OK in that case all tags here seem relevant, for SEO that is. Though I should say, I think most search engines pretty much ignore suggested meta keywords and extract them from the content instead. But if the meta keywords match the content, then it may be a nice extra.
In any case I think it's a good idea to have a page listing all articles & tags on the website.
Here's a start :monocle_face:
for f in dvc.org/content/blog/*.md; do
echo -n "$f: "
awk '{if ($0=="---")c++;if(c==1){print $0} }' $f \
| python -c 'import sys,yaml; print(yaml.safe_load(sys.stdin)["tags"])';
done
I can absolutely do this once I clear my plate with the new link checker and some other small features/fixes. I spent a lot of time figuring out tags in Gatsby to make a plugin a while ago, so this is an area I'm particularly strong in.
In the meantime, we could put together some designs for what the tag cloud looks like- as well as any other changes we'd introduce like tag indexes, though those will likely be so similar to other indexes that they require minimal, if any real design work.
Would be useful - e.g "Productivity" is only used once. Seems like it could be appropriate to add to some of the others. Full list below:
put together some designs for what the tag cloud looks like
Layout: there's an extremely convenient hole to the right of the most recent article title:

Design: prob none needed at first, maybe juts try an existing component e.g. https://www.npmjs.com/package/react-tagcloud
Most helpful comment
I can absolutely do this once I clear my plate with the new link checker and some other small features/fixes. I spent a lot of time figuring out tags in Gatsby to make a plugin a while ago, so this is an area I'm particularly strong in.
In the meantime, we could put together some designs for what the tag cloud looks like- as well as any other changes we'd introduce like tag indexes, though those will likely be so similar to other indexes that they require minimal, if any real design work.