cal-event.html.twig 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. <div class="card-header">
  26. {% include 'partials/blog/public.html.twig' %}
  27. </div>
  28. {% if image %}
  29. <div class="card-image">
  30. {{ image }}
  31. </div>
  32. {% endif %}
  33. <div class="card-body">
  34. <div class="card-title">
  35. {% include 'partials/blog/date.html.twig' %}
  36. {% include 'partials/blog/title.html.twig' with {title_level: 'h2'} %}
  37. </div>
  38. </div>
  39. <div class="card-content">
  40. <div class="reso">
  41. <!-- Your share button code -->
  42. <div class="fb-share-button"
  43. data-href="{{uri.route(true, true)}}"
  44. data-layout="button">
  45. <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;">
  46. Partager
  47. <img src="/user/themes/lecampus/images/fb_black.svg" alt="facebook">
  48. </a>
  49. </div>
  50. <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;">
  51. Partager
  52. <img src="/user/themes/lecampus/images/twitter.svg" alt="Twitter">
  53. </a>
  54. <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;">
  55. Twitter
  56. <img src="/user/themes/lecampus/images/in_black.svg" alt="linkedin" />
  57. </a>
  58. </div>
  59. <div class="txt">
  60. {% if page.summary != page.content %}
  61. {{ page.summary(100)|raw }}
  62. {% endif %}
  63. {{page.content}}
  64. </div>
  65. </div>
  66. </div>