You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.3 KiB
27 lines
1.3 KiB
{% load static %}
|
|
|
|
<div class="share">
|
|
<div class="share__title">Поделиться {% if share_object_name %}{{ share_object_name }}{% else %}{% if livelesson or lesson %}уроком{% else %}курсом{% endif %}{% endif %}</div>
|
|
<div class="share__list likely">
|
|
<a class="share__item facebook" href="#" data-url="http://{{request.META.HTTP_HOST}}{{object.get_absolute_url}}">
|
|
<svg class="icon icon-share-facebook">
|
|
<use xlink:href="{% static 'img/sprite.svg' %}#icon-share-facebook"></use>
|
|
</svg>
|
|
</a>
|
|
<a class="share__item twitter" href="#" data-url="http://{{request.META.HTTP_HOST}}{{object.get_absolute_url}}">
|
|
<svg class="icon icon-share-twitter">
|
|
<use xlink:href="{% static 'img/sprite.svg' %}#icon-share-twitter"></use>
|
|
</svg>
|
|
</a>
|
|
<a class="share__item gplus" href="#" data-url="http://{{request.META.HTTP_HOST}}{{object.get_absolute_url}}">
|
|
<svg class="icon icon-share-google">
|
|
<use xlink:href="{% static 'img/sprite.svg' %}#icon-share-google"></use>
|
|
</svg>
|
|
</a>
|
|
<a class="share__item pinterest" href="#" data-url="http://{{request.META.HTTP_HOST}}{{object.get_absolute_url}}">
|
|
<svg class="icon icon-share-pinterest">
|
|
<use xlink:href="{% static 'img/sprite.svg' %}#icon-share-pinterest"></use>
|
|
</svg>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|