Skip to content

Commit f767927

Browse files
author
marco.mueller
committed
move feature files
1 parent 83fd59c commit f767927

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ <h1>Smart Football Table</h1>
2424
<div class="col-12">
2525
<h2 class="title-3 text-dark mb-4">Features while playing a match:</h2>
2626
</div>
27-
{% for feature in site.features.featuresLive %}
27+
{% for featurefunction in site.sftfeatures.featuresLive %}
2828
<div class="col-12 col-md-6 col-lg-4 mb-2">
2929
<div class="feature">
30-
{% if feature.image %}<div class="feature-image"><img alt="{{ feature.title }} logo" src="{{ feature.image }}" /></div> {% endif %}
31-
{% if feature.url %}<a class="feature-title" href="{{ feature.url }}">{{ feature.title }}</a><br> {% else %} <h2 class="feature-title">{{ feature.title }}</h2><br> {% endif %}
32-
<div class="feature-content">{{ feature.description }}</div>
30+
{% if featurefunction.image %}<div class="feature-image"><img alt="{{ featurefunction.title }} logo" src="{{ featurefunction.image }}" /></div> {% endif %}
31+
{% if featurefunction.url %}<a class="feature-title" href="{{ featurefunction.url }}">{{ featurefunction.title }}</a><br> {% else %} <h2 class="feature-title">{{ featurefunction.title }}</h2><br> {% endif %}
32+
<div class="feature-content">{{ featurefunction.description }}</div>
3333
</div>
3434
</div>
3535
{% endfor %}
@@ -40,12 +40,12 @@ <h2 class="title-3 text-dark mb-4">Features while playing a match:</h2>
4040
<div class="col-12">
4141
<h2 class="title-3 text-dark mb-4">Features after a match:</h2>
4242
</div>
43-
{% for feature in site.features.featuresAfter %}
43+
{% for featurefunction in site.sftfeatures.featuresAfter %}
4444
<div class="col-12 col-md-6 col-lg-4 mb-2">
4545
<div class="feature">
46-
{% if feature.image %}<div class="feature-image"><img alt="{{ feature.title }} logo" src="{{ feature.image }}" /></div> {% endif %}
47-
{% if feature.url %}<a class="feature-title" href="{{ feature.url }}">{{ feature.title }}</a><br> {% else %} <h2 class="feature-title">{{ feature.title }}</h2><br> {% endif %}
48-
<div class="feature-content">{{ feature.description }}</div>
46+
{% if featurefunction.image %}<div class="feature-image"><img alt="{{ featurefunction.title }} logo" src="{{ featurefunction.image }}" /></div> {% endif %}
47+
{% if featurefunction.url %}<a class="feature-title" href="{{ featurefunction.url }}">{{ featurefunction.title }}</a><br> {% else %} <h2 class="feature-title">{{ featurefunction.title }}</h2><br> {% endif %}
48+
<div class="feature-content">{{ featurefunction.description }}</div>
4949
</div>
5050
</div>
5151
{% endfor %}

0 commit comments

Comments
 (0)