Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. {% if informations %}
  2. <div class="col-sm-3">
  3. <h5>{{ text_information }}</h5>
  4. <ul class="list-unstyled">
  5.  
  6. {% for information in informations %}
  7.  
  8. <li> <a style="font-size: 10pt;" href="{{ information.href }}">
  9. <i style="color: #FFCC00; font-size: 9pt;margin-right: 2px;" aria-hidden="true" class="fas fa-info"></i>
  10. {{ information.title }}</a></li>
  11.  
  12. {% endfor %}
  13.  
  14. </ul>
  15. </div>
  16. {% endif %}
  17.  
  18. {% if informations %}
  19. <div class="col-sm-3">
  20. <h5>{{ text_information }}</h5>
  21. <ul class="list-unstyled">
  22. {% for information in informations == "Privacy Policy" %}
  23. <li> <a style="font-size: 10pt;" href="{{ information.href }}">
  24. <i style="color: #FFCC00; font-size: 10pt;margin-right: 2px;" aria-hidden="true" class="fas fa-user-secret"></i> {{ information.title }}</a></li>
  25.  
  26. {% endfor %}
  27.  
  28. </ul>
  29. </div>
  30.  
  31. {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement