forked from project-flotta/project-flotta.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Eloy Coto <[email protected]>
- Loading branch information
Showing
24 changed files
with
274 additions
and
214 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# project-flotta.io webpage | ||
|
||
|
||
## Build | ||
|
||
``` | ||
make build | ||
``` | ||
|
||
## Check links | ||
|
||
``` | ||
make check-link | ||
``` | ||
|
||
## Contrib | ||
|
||
Template based on `github.com/themefisher/kross-jekyll` project. |
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 |
---|---|---|
|
@@ -9,4 +9,4 @@ | |
</div> | ||
</div> | ||
</section> | ||
<!-- /about --> | ||
<!-- /about --> |
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,24 @@ | ||
{% if site.data.settings.features %} | ||
<!-- features --> | ||
<section class="section"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-12 text-center"> | ||
<h2 class="section-title">{{ site.data.settings.features-title }}</h2> | ||
</div> | ||
{% for feature in site.data.settings.features %} | ||
<div class="col-md-4 mb-4 mb-md-0"> | ||
<div class="card hover-shadow shadow"> | ||
<div class="card-body {% if feature.active %}active-bg-primary{% endif %} text-center px-4 py-5"> | ||
<i class="{{ feature.icon }} icon mb-5 d-inline-block"></i> | ||
<h4 class="mb-4">{{ feature.name }}</h4> | ||
<p>{{ feature.description }}</p> | ||
</div> | ||
</div> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
</section> | ||
<!-- /features --> | ||
{% endif %} |
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
Oops, something went wrong.