forked from phoedos/pmd
a62b5a388e
Note: the css class "fa" is deprecated and "fas" should be used instead. "fab" is for branding icons (like github).
24 lines
829 B
HTML
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>
|