base.html.twig 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. {% apply inky_to_html|inline_css(source('@styles/foundation-emails.css'))|inline_css %}
  2. <style>
  3. {% block style %}
  4. .container *{
  5. font-family: Arial;
  6. }
  7. .white{
  8. color: #FFFFFF !important;
  9. }
  10. .black{
  11. color: #000000 !important;
  12. }
  13. .container{
  14. border: 2px solid #324250;
  15. border-radius: 5px;
  16. margin-top: 20px;
  17. }
  18. .header{
  19. background: #324250;
  20. }
  21. .footer{
  22. background: #1ead8f;
  23. padding: 10px;
  24. color: #FFFFFF;
  25. font-weight: bold;
  26. }
  27. {% endblock %}
  28. </style>
  29. <container>
  30. {% block header %}
  31. <row>
  32. <columns small="12" class="header">
  33. <spacer size="10"></spacer>
  34. <p class="white">{{ organization.name }}</p>
  35. </columns>
  36. </row>
  37. {% endblock %}
  38. <row>
  39. <columns small="12">
  40. <spacer size="10"></spacer>
  41. {% block content %}
  42. {% endblock %}
  43. <spacer size="10"></spacer>
  44. </columns>
  45. </row>
  46. {% block antispam %}
  47. <row>
  48. <columns small="12">
  49. <p>
  50. <small class="black">
  51. Cet e-mail a été envoyé automatiquement à
  52. #__#ANTISPAM_PERSON_EMAIL#__#
  53. par le logiciel Opentalent utilisé par votre structure.
  54. Merci de ne pas y répondre.
  55. </small>
  56. </p>
  57. </columns>
  58. </row>
  59. {% endblock %}
  60. {% block footer %}
  61. <row>
  62. <columns small="12" class="footer">
  63. <center>
  64. <menu>
  65. <small>
  66. <item href="https://support.opentalent.fr" class="white">Aide du logiciel</item>
  67. -
  68. <item href="https://www.opentalent.fr/login" class="white">Se connecter au logiciel</item>
  69. </small>
  70. </menu>
  71. </center>
  72. </columns>
  73. </row>
  74. {% endblock %}
  75. {% block footer_signature %}
  76. <row>
  77. <columns small="12">
  78. <spacer size="10"></spacer>
  79. <p class="text-center">
  80. <small class="black">
  81. &copy; Opentalent - {{ "now"|date("Y") }} - La plateforme culturelle : agenda culturel et logiciels pour les structures culturelles -
  82. <a href="https://www.opentalent.fr/agenda">www.opentalent.fr/agenda</a>
  83. </small>
  84. </p>
  85. </columns>
  86. </row>
  87. {% endblock %}
  88. </container>
  89. {% endapply %}