update home template
This commit is contained in:
26
templates/shortcodes/features.html
Normal file
26
templates/shortcodes/features.html
Normal file
@@ -0,0 +1,26 @@
|
||||
{% set title = title | default(value="") %}
|
||||
{% set svg = svg | default(value="") %}
|
||||
{% set svg2 = svg2 | default(value="") %}
|
||||
{% set description = description | default(value="") %}
|
||||
|
||||
<!-- section 2 page templates -->
|
||||
|
||||
<div class="flex flex-col">
|
||||
<div class="flex items-center gap-x-3 text-lg font-semibold leading-7 mb-2 tracking-tight">
|
||||
{% if svg %}
|
||||
<svg class="h-full w-6 object-cover flex-none text-indigo-400" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
|
||||
{% if svg %}
|
||||
<path fill-rule="evenodd" d="{{ svg }}" clip-rule="evenodd" />
|
||||
{% endif %}
|
||||
|
||||
{% if svg2 %}
|
||||
<path d="{{ svg2 }}" />
|
||||
{% endif %}
|
||||
</svg>
|
||||
|
||||
{% endif %}
|
||||
|
||||
{{ title }}
|
||||
</div>
|
||||
<p class="text-base">{{ description }}</p>
|
||||
</div>
|
Reference in New Issue
Block a user