This shows a sample layout for a knowledge base. Each square could link to a tag archive page. In this example, font icons from Font Awesome are used for the graphics, and the layout is pulled from the Modern Business theme. .
Edit me
Here’s the sample knowledge-base style layout:
Knowledge Base Categories
Generating a list of all pages with a certain tag
If you don’t want to link to a tag archive index, but instead want to list all pages that have a certain tag, you could use this code:
Getting started pages:
<ul>
{% assign sorted_pages = site.pages | sort: 'title' %}
{% for page in sorted_pages %}
{% for tag in page.tags %}
{% if tag == "getting_started" %}
<li><a href="{{ page.url | remove: "/" }}">{{page.title}}</a></li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
Here’s the result:
Getting started pages:
- "Git"ting Started
- About Ruby, Gems, Bundler, and other prerequisites
- About the theme's author
- Beginning the Journey
- Creating a CENTOS 7 Base Image
- Getting started with the Documentation Theme for Jekyll
- Git and GitHub
- GitHub Pages
- GitHub Pages Maintenance
- GitHub Pages Setup
- Install Jekyll on Mac
- Installing MySQL 8.0 on CENTOS 7 for Zabbix
- Installing Zabbix
- Installing Zabbix Agent
- Installing Zabbix Application Server on CENTOS 7
- Installing Zabbix Proxy Server on CENTOS 7
- Installing Zabbix Web Interface on CENTOS 7 using Apache Web Server
- Jekyll Concepts And Structures
- Jekyll Homepage
- Linux Homepage
- Markdown
- Markdown Syntax Guide
- Pages
- Posts
- Release notes 5.0
- Release notes 6.0
- Scripting Homepage
- Sidebar Navigation
- Support
- Supported features
- VMware Homepage
- Words of Encouragement
- Zabbix Administration
- Zabbix Administration - Basic Monitoring
- Zabbix Administration - Tips, Tricks, and Insights
- Zabbix Datasheet