cal-event.html.twig 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <script type='application/ld+json'>
  2. {
  3. "@type": "Event",
  4. "name": "agenda",
  5. "url": "{{uri.base}}",
  6. "description": "{{page.summary}}",
  7. "startDate": "{{page.header.date_begin}}",
  8. "endDate": "{{page.header.date_end}}",
  9. "location": {
  10. "@type": "Place",
  11. "name": "{{page.title}}",
  12. "address": {
  13. "@type": "PostalAddress",
  14. "streetAddress": "Place Michel Paulus,Ecosite du Val de Drôme",
  15. "addressLocality": "Eurre",
  16. "addressRegion": "Val de Drôme",
  17. "postalCode": "26400",
  18. "addressCountry": "France"
  19. }
  20. }
  21. }
  22. </script>
  23. {% set image = page.media.images|first %}
  24. <div class="event">
  25. {% macro pageLinkName(text) %}{{ text|lower|replace({' ':'_'}) }}{% endmacro %}
  26. {% import _self as macro %}
  27. {% for tag in page.taxonomy.tag %}
  28. <div class="card-header {{ macro.pageLinkName(tag) }}">
  29. {% endfor %}
  30. {% include 'partials/blog/public.html.twig' %}
  31. </div>
  32. {% if image %}
  33. <div class="card-image">
  34. {{ image }}
  35. </div>
  36. {% endif %}
  37. <div class="card-body">
  38. <div class="card-title">
  39. {% include 'partials/blog/date.html.twig' %}
  40. {% include 'partials/blog/title.html.twig' with {title_level: 'h2'} %}
  41. </div>
  42. </div>
  43. <div class="card-content">
  44. <div class="reso">
  45. <!-- Your share button code -->
  46. <div>
  47. <a href="//www.facebook.com/sharer/sharer.php?u={{uri.route(true, true)}}" class="sharebox" target="_blank" rel =" noopener " onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=400,width=700');return false;">
  48. Partager
  49. <img src="/user/themes/lecampus/images/fb_black.svg" alt="facebook">
  50. </a>
  51. </div>
  52. <a target="_blank" rel =" noopener " title="Twitter" href="https://twitter.com/share?url={{uri.route(true, true)}}" rel="nofollow" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=400,width=700');return false;">
  53. Partager
  54. <img src="/user/themes/lecampus/images/twitter.svg" alt="Twitter">
  55. </a>
  56. <a target="_blank" rel =" noopener " href=" http://www.linkedin.com/shareArticle?mini=true&url={{uri.route(true, true)}}" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=400,width=700');return false;">
  57. Partager
  58. <img src="/user/themes/lecampus/images/in_black.svg" alt="linkedin" />
  59. </a>
  60. </div>
  61. <div class="txt">
  62. {{page.content}}
  63. </div>
  64. </div>
  65. </div>