Change subscribe page style. Fix typo. Fix spacing. Change anchor style

This commit is contained in:
2020-04-04 17:46:13 +05:30
parent bc2ecc1cff
commit 5e369994be
3 changed files with 38 additions and 21 deletions

View File

@@ -5,8 +5,11 @@
{% endblock %}
{% block left_content %}
<div class="subscribe">
{% for subscribtion in subscribtions %}
<a href={{subscribtion.link}} x-text="{{subscribtion.text}}"><span class="fa fa-{{subscribtion.icon}}"></a>
{% for subscription in subscriptions %}
<a href={{subscription.link}} class="subscription">
<span class="fa fa-{{subscription.icon}}">
<p>{{subscription.text}}</p>
</a>
{% endfor %}
</div>
{% endblock %}