-
Notifications
You must be signed in to change notification settings - Fork 617
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 #1876 from Victor-Chris/website/make-website-icons…
…-clickable Make icons corresponding to links clickable
- Loading branch information
Showing
3 changed files
with
29 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
- header: Install Lima | ||
icon: fa-solid fa-code | ||
link: /docs/installation | ||
label: Get Lima Here | ||
- header: Try Lima | ||
icon: fa-solid fa-chalkboard | ||
link: /docs/usage | ||
label: Get started with Lima | ||
- header: Contributions welcome | ||
icon: fa-brands fa-github | ||
link: /community | ||
label: Join the Lima community |
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,15 @@ | ||
{{ $usedBy := site.Data.helpfullinks -}} | ||
|
||
{{ range $usedBy -}} | ||
<div class="col-lg-4 mb-5 mb-lg-0 text-center"> | ||
<a class="text-primary" href="{{ .link }}"> | ||
<div class="mb-4 h1"> | ||
<i class="{{ .icon }}"></i> | ||
</div> | ||
<h4 class="h3">{{ .header }}</h4> | ||
</a> | ||
<a class="mr-3 mb-4 text-secondary" href="{{ .link }}"> | ||
{{ .label }} <i class="fas fa-arrow-alt-circle-right ml-2"></i> | ||
</a> | ||
</div> | ||
{{- end }} |