This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #150 from TylerTrott/trunk
Added icons/logos to group cards
- Loading branch information
Showing
9 changed files
with
83 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<div class="card {{ .Get "class" }}"> | ||
<a href="{{ .Get "href" }}"> | ||
<div class="card-body"> | ||
<div class="feature-icon-container"> | ||
<i class="fas {{ .Get "icon" }}" style="height:1.5rem; width:1.5rem; font-size: 1.5em;"></i> | ||
</div> | ||
<h5 class="card-title">{{ .Get "title" }}</h5> | ||
<p class="card-text">{{ .Get "text" }}</p> | ||
</div> | ||
</a> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<div class="card {{ .Get "class" }}" style="margin-top: 32px; margin-bottom: 32px;"> | ||
<a href="{{ .Get "href" }}"> | ||
<div class="card-body"> | ||
<div class="feature-image-container"> | ||
<img src="{{ .Get "img" }}" style="height:2rem; width:2rem;"></img> | ||
</div> | ||
<h5 class="card-title">{{ .Get "title" }}</h5> | ||
<p class="card-text">{{ .Get "text" }}</p> | ||
</div> | ||
</a> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters