diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2025-03-27 18:24:46 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2025-03-27 18:24:46 -0600 |
commit | 4fcfb52f60f20cb091dcb4dbdf4a365fdea14651 (patch) | |
tree | 11cc0c9d1df7fd31ff12930cfb963f3f9fed1c56 /_includes/features.html | |
parent | 9eefba4a229a404eb1088db477a05e84b61e28b9 (diff) |
initial commit
Diffstat (limited to '_includes/features.html')
-rw-r--r-- | _includes/features.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/_includes/features.html b/_includes/features.html new file mode 100644 index 0000000..5920b14 --- /dev/null +++ b/_includes/features.html @@ -0,0 +1,23 @@ + <div class="column is-two-thirds"> + <div class="columns is-multiline " style="height: 100%;"> + {% assign features_to_show = site.features | slice: 0, 6 %} + {% for feature in features_to_show %} + {% if feature.title %} + <div class="column is-6" style="height: 33.333%;"> + <div class="card feature-box m-1"> + <div class="card-content is-flex is-flex-direction-column is-justify-content-center"> + <div class="has-text-centered mb-2"> + <span class="icon is-large"> + <i class="fa-solid fa-{{ feature.fontawesome_icon_name }} fa-2x"></i> + </span> + </div> + <h4 class="title is-5 has-text-centered">{{ feature.title }}</h4> + <p class="has-text-centered">{{ feature.description }}</p> + </div> + </div> + </div> + {% endif %} + {% endfor %} + + </div> + </div> |