diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-07-24 11:57:23 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2020-07-24 11:57:23 +0530 |
commit | 210fca3a77b9043e0f2c608e1eaff6f2ec37cdf3 (patch) | |
tree | 34123e1c92d6cae2a4435161f68991ebe7b89a64 /docs/_includes/features.html | |
parent | 54b0e8a12bdc9c7aef52a1629641b6b1137277a6 (diff) |
added landing page
Diffstat (limited to 'docs/_includes/features.html')
-rw-r--r-- | docs/_includes/features.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/docs/_includes/features.html b/docs/_includes/features.html new file mode 100644 index 0000000..df75eec --- /dev/null +++ b/docs/_includes/features.html @@ -0,0 +1,26 @@ +<div class="features"> + + {% for feature in site.features %} + + {% if feature.title %} + <div class="feature"> + <div> + <span class="fa-stack fa-1x"> + <i class="iconBack fas fa-circle fa-stack-2x"></i> + <i class="iconTop fas fa-{{ feature.fontawesome_icon_name }} fa-stack-1x"></i> + </span> + </div> + <div class="featureText"> + <h3> + {{ feature.title }} + </h3> + <p> + {{ feature.description }} + </p> + </div> + </div> + {% endif %} + + {% endfor %} + +</div>
\ No newline at end of file |