inforesurs-test/templates/follow.html.twig

51 строка
2.8 KiB
Twig
Исходник Постоянная ссылка Обычный вид История

2019-06-22 14:15:33 +00:00
{% extends "base.html.twig" %}
{% block title %}
Плагин follow
{% endblock %}
{% block body %}
<div class="container">
<a href="{{ path('index_page') }}" class="btn btn-primary mb-5">← Главная</a>
<p>But I must explain to you how all this mistaken idea of denouncing
pleasure and <span class="text-info js-follow">praising</span> pain
was born and I will give you a complete account of the system, and
expound the actual teachings of the great explorer of the truth, the
master-builder of human happiness. No one rejects, dislikes, or
avoids pleasure itself, because it is pleasure, but because those
who do not know how to pursue pleasure rationally encounter
consequences that are extremely painful. Nor again is there anyone
who loves or pursues or desires to obtain pain of itself, because it
is pain, but because occasionally circumstances occur in which toil
and pain can procure him some great pleasure. To take a trivial
example, which of us ever undertakes laborious physical exercise,
except to obtain some advantage from it? But who has any right to
find fault with a man who chooses to enjoy a pleasure that has no
annoying consequences, or one who avoids a pain that produces no
resultant pleasure?</p>
<p><span class="text-success js-follow">follow</span></p>
<p>At vero eos et accusamus et iusto odio dignissimos ducimus qui
blanditiis <span class="text-danger js-follow">praesentium</span>
voluptatum deleniti atque corrupti quos dolores et quas molestias
excepturi sint occaecati cupiditate non provident, similique sunt in
culpa qui officia deserunt mollitia animi, id est laborum et dolorum
fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam
libero tempore, cum soluta nobis est eligendi optio cumque nihil
impedit quo minus id quod maxime placeat facere possimus, omnis
voluptas assumenda est, omnis dolor repellendus. Temporibus autem
quibusdam et aut officiis debitis aut rerum necessitatibus saepe
eveniet ut et voluptates repudiandae sint et molestiae non
recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut
aut reiciendis voluptatibus maiores alias consequatur aut
perferendis doloribus asperiores repellat.</p>
</div>
{% endblock %}
{% block javascripts %}
<script src="/js/jquery.follow.min.js"></script>
<script>
(function ($) {
$(function () {
$(".js-follow").follow();
});
})(jQuery);
</script>
{% endblock %}