ylc395
19
Did you set branch in Github Tab like this?
If you already set like this but still met problem, it's a bug, you can provide more details to me as Github issue, such as the error report in Modal,
You can define one page, which contains all tags and their related articles, and use JavaScript to filter articles by tag. Honestly speaking, it's not that easy for guys without web development experience, but I can provide a example:
<%# tags.ejs, a page that contains all tags and their related article %>
<body>
<%# list all tags(united set of tags) %>
<ul>
<% for (const tag of _.union(_.map($site.articles, 'tags'))) { %>
<li>
<%= tag %>
<%# list all articles which contains this tag) %>
<ul>
<% for (const article of _.filter($site.articles, ({tags}) => tags.includes(tag))) { %>
<li><a href="/<%= article.fullUrl %>"><%= article.title %></a></li>
<% } %>
</ul>
</li>
<% } %>
</ul>
<script>
// if you know JavaScript programming,
// you can write code here to control which tag and its related articles should be displayed,
// according to user clicking or query string in url
// if you don't, maybe it can be your first lesson of JS programming :)
</script>
</body>