pmd/docs/_includes/custom/knowledge_base_topic.html
Andreas Dangel a62b5a388e [doc] Use new self hosted fontawesome
Note: the css class "fa" is deprecated and "fas" should be used
instead. "fab" is for branding icons (like github).
2020-09-18 10:45:00 +02:00

24 lines
829 B
HTML

<!-- Argument summary: -->
<!-- datagroup -->
<!-- fa-style, defaults to "fas" -->
<!-- fa-icon -->
<!-- title -->
<!-- description -->
<div class="col-md-3 col-sm-6">
<div class="panel panel-default text-center">
<div class="panel-heading">
<span class="fa-stack fa-5x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<i class="{{ include.fa-style | default: "fas" }} {{ include.fa-icon }} fa-stack-1x fa-inverse"></i>
</span>
</div>
<div class="panel-body">
<h4>{{ include.title }}</h4>
<p>{{ include.description }}</p>
<button class="btn btn-primary topical-filter" data-group="{{ include.datagroup }}">Learn More</button>
</div>
</div>
</div>