banner.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {# This is just a banner that is displayed at the top of the homepage
  2. # on special occasions.
  3. #}
  4. {#
  5. <div class="bg-green" style="margin: 0 0 2em 0; padding: .5em;">
  6. <img alt="" title="" src="images/pulse.gif" style="height: 1em;" />
  7. <a href="https://libreplanet.org/2019/program/">LibrePlanet 2019</a>
  8. </div>
  9. #}
  10. {# Welcome New Year.
  11. # To maintain alignment, keep al lines below of the same length
  12. # and with no padding.
  13. #}
  14. {#
  15. <pre class="new_year">
  16. .''.
  17. . *''* :_\/_:
  18. _\(/_ .:.*_\/_* : /\ :
  19. ./)\ ':'* /\ * : '..'.
  20. ' *''* * '.\'/.' _\(/_'
  21. *_\/_* -= o =- /)\
  22. * /\ * .'/.\'. '
  23. *..* :
  24. ____ ___ _ ___
  25. |___ \ / _ \/ |/ _ \
  26. __) | | | | | (_) |
  27. / __/| |_| | |\__, |
  28. |_____|\___/|_| /_/
  29. </pre>
  30. #}
  31. {# Peers Jam #}
  32. {% set datetime = now() %}
  33. {% if datetime.isoweekday() == 5 and datetime['hour'] >= 19 and datetime['hour'] <= 20 %}
  34. <div class="bg-green" style="margin: 0 0 2em 0; padding: .5em;">
  35. <img alt="" title="" src="images/pulse.gif" style="height: 1em;" />
  36. <a href="https://peers.community/#jam">Peers Jam</a>
  37. </div>
  38. {% endif %}