aboutsummaryrefslogtreecommitdiff
path: root/docs/_includes/features.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/_includes/features.html')
-rw-r--r--docs/_includes/features.html26
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