pierre.renard.html 27 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>PierreQ Planning</title>
  6. <style>
  7. ::before,
  8. ::after {
  9. box-sizing: border-box;
  10. }
  11. :root {
  12. --color-primary-100: hsl(10, 59%, 25%);
  13. --color-primary-200: hsl(10, 59%, 45%);
  14. --color-primary-400: hsl(37, 100%, 45%);
  15. --color-primary-600: hsl(37, 100%, 65%);
  16. --color-primary-800: hsl(37, 100%, 85%);
  17. --color-accent-100: hsl(179, 52%, 15%);
  18. --color-accent-200: hsl(179, 52%, 25%);
  19. --color-accent-400: hsl(172, 58%, 40%);
  20. --color-accent-500: hsl(172, 58%, 53%);
  21. --color-accent-600: hsl(172, 58%, 66%);
  22. --color-accent-700: hsl(172, 60%, 70%);
  23. --color-accent-800: hsl(172, 60%, 80%);
  24. --color-accent-850: hsl(172, 70%, 90%);
  25. --color-accent-900: hsl(172, 85%, 95%);
  26. --color-accent-950: hsl(172, 96%, 98%);
  27. --color-neutral-100: hsl(37, 5%, 15%);
  28. --color-neutral-200: hsl(37, 5%, 25%);
  29. --color-neutral-300: hsl(37, 5%, 35%);
  30. --color-neutral-400: hsl(37, 5%, 45%);
  31. --color-neutral-600: hsl(37, 5%, 60%);
  32. --color-neutral-800: hsl(37, 5%, 80%);
  33. }
  34. .icon {
  35. font-family: "Material Icons";
  36. font-weight: normal;
  37. font-style: normal;
  38. font-size: 24px;
  39. line-height: 1;
  40. letter-spacing: normal;
  41. text-transform: none;
  42. display: inline-block;
  43. white-space: nowrap;
  44. word-wrap: normal;
  45. direction: ltr;
  46. font-feature-settings: "liga";
  47. -moz-font-feature-settings: "liga";
  48. -moz-osx-font-smoothing: grayscale;
  49. }
  50. .benevole {
  51. vertical-align: middle;
  52. display: inline-block;
  53. }
  54. .benevole .icon {
  55. vertical-align: bottom;
  56. }
  57. .planning-container {
  58. max-width: 800px;
  59. width: 100%;
  60. }
  61. .daily-agenda {
  62. border: solid 1px var(--color-neutral-200);
  63. }
  64. .day-header {
  65. background: var(--color-neutral-200);
  66. color: var(--color-accent-800);
  67. padding: 12px;
  68. font-size: 1.8rem;
  69. font-weight: bold;
  70. text-transform: capitalize;
  71. }
  72. .agenda-creneau-header {
  73. padding: 12px;
  74. background: var(--color-accent-850);
  75. position: relative;
  76. border-bottom: 1px solid var(--color-accent-600);
  77. }
  78. .agenda-creneau-time {
  79. padding-right: 8px;
  80. }
  81. .agenda-creneau-title {
  82. font-weight: bold;
  83. text-transform: capitalize;
  84. }
  85. .agenda-creneau-action {
  86. position: absolute;
  87. top: 8px;
  88. right: 12px;
  89. background: transparent;
  90. outline: 0;
  91. border: 0;
  92. cursor: pointer;
  93. }
  94. .agenda-creneau-action:hover {
  95. color: var(--color-neutral-400);
  96. }
  97. .transformation-container {
  98. height: auto;
  99. overflow: hidden;
  100. }
  101. .agenda-creneau-details {
  102. padding: 4px 12px;
  103. display: flex;
  104. flex-wrap: wrap;
  105. overflow: hidden;
  106. opacity: 1;
  107. transform-origin: 0px 0px;
  108. transition: height 0.3s ease-in-out;
  109. }
  110. .agenda-creneau-details--title {
  111. width: 100%;
  112. font-weight: 600;
  113. margin: 8px 0px;
  114. }
  115. .agenda-creneau-details--content {
  116. width: 100%;
  117. margin: 0px 0px 8px;
  118. }
  119. @media (min-width: 600px) {
  120. .name-header {
  121. text-align: center;
  122. }
  123. .planning-container {
  124. margin-left: auto;
  125. margin-right: auto;
  126. }
  127. .agenda-creneau-time {
  128. padding-right: 2rem;
  129. }
  130. .agenda-creneau-details--title {
  131. width: 16.6%;
  132. margin-bottom: 12px;
  133. }
  134. .agenda-creneau-details--content {
  135. width: calc(33.3% - 8px);
  136. padding-right: 8px;
  137. margin: 8px 0px 16px;
  138. }
  139. }
  140. .agenda-creneau-details--content .chip {
  141. margin: 2px;
  142. }
  143. .hide {
  144. display: none;
  145. }
  146. #links {
  147. list-style-type: none;
  148. max-width: 200px;
  149. margin: 0 auto;
  150. border-top: 1px solid var(--color-neutral-400);
  151. padding: 0;
  152. }
  153. .link-item {
  154. padding: 8px 12px;
  155. margin: 0 auto;
  156. border: solid 1px var(--color-neutral-400);
  157. border-top: 0px;
  158. }
  159. .link-item a {
  160. display: block;
  161. }
  162. .formcontrol {
  163. all: initial;
  164. display: block;
  165. box-sizing: border-box;
  166. font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  167. }
  168. .formcontrol.home-search {
  169. margin: 3rem auto 1rem;
  170. max-width: 400px;
  171. }
  172. .formcontrol:not(:last-child) {
  173. margin-bottom: 1rem;
  174. }
  175. .formcontrol-control {
  176. width: 100%;
  177. }
  178. .formcontrol-label {
  179. color: var(--color-neutral-200);
  180. display: -webkit-box;
  181. display: flex;
  182. font-size: 0.9rem;
  183. font-family: inherit;
  184. font-weight: 500;
  185. line-height: 1.5rem;
  186. margin-bottom: 0.2rem;
  187. }
  188. .formcontrol-label > button {
  189. margin-left: 0.25rem;
  190. }
  191. .formcontrol-optional {
  192. -webkit-box-flex: 1;
  193. flex: 1;
  194. color: #647592;
  195. font-size: 0.75rem;
  196. margin-top: 0.25rem;
  197. text-align: right;
  198. line-height: 1.125rem;
  199. margin-left: 0.25rem;
  200. }
  201. .formcontrol-help {
  202. color: #647592;
  203. display: -webkit-box;
  204. display: flex;
  205. font-size: 0.75rem;
  206. margin-top: 0.5rem;
  207. font-family: inherit;
  208. line-height: 1.125rem;
  209. }
  210. .formcontrol-helplink {
  211. -webkit-box-flex: 1;
  212. flex: 1;
  213. margin-top: calc(-0.25rem);
  214. text-align: right;
  215. }
  216. .formcontrol--error .formcontrol-help {
  217. color: #e4002b;
  218. }
  219. .formcontrol--success .formcontrol-help {
  220. color: #08875b;
  221. }
  222. .input {
  223. all: initial;
  224. color: var(--color-neutral-100);
  225. width: 100%;
  226. border: none;
  227. height: 2rem;
  228. margin: 0;
  229. outline: 0;
  230. padding: 0.2rem 0.5rem;
  231. font-size: 0.875rem;
  232. -webkit-appearance: none;
  233. -moz-appearance: none;
  234. appearance: none;
  235. box-shadow: 0 -1px 0 0 var(--color-accent-700) inset;
  236. box-sizing: border-box;
  237. -webkit-transition: 0.1s ease-in-out;
  238. transition: 0.1s ease-in-out;
  239. font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  240. line-height: 1.25rem;
  241. background-color: var(--color-accent-950);
  242. -webkit-transition-property: box-shadow, border;
  243. transition-property: box-shadow, border;
  244. }
  245. .input::-webkit-input-placeholder {
  246. color: #505d74;
  247. }
  248. .input:-ms-input-placeholder {
  249. color: #505d74;
  250. }
  251. .input::-ms-input-placeholder {
  252. color: #505d74;
  253. }
  254. .input::placeholder {
  255. color: #505d74;
  256. }
  257. .input:hover {
  258. background-color: var(--color-accent-850);
  259. }
  260. .input:focus {
  261. box-shadow: 0 0 0 2px var(--color-accent-700);
  262. border-color: transparent;
  263. background-color: var(--color-accent-950);
  264. }
  265. .input:disabled {
  266. color: #c1c7d3 !important;
  267. -webkit-user-select: none;
  268. -moz-user-select: none;
  269. -ms-user-select: none;
  270. user-select: none;
  271. border-color: transparent;
  272. pointer-events: none;
  273. }
  274. .input:disabled::-webkit-input-placeholder {
  275. color: #c1c7d3;
  276. }
  277. .input:disabled:-ms-input-placeholder {
  278. color: #c1c7d3;
  279. }
  280. .input:disabled::-ms-input-placeholder {
  281. color: #c1c7d3;
  282. }
  283. .input:disabled::placeholder {
  284. color: #c1c7d3;
  285. }
  286. .input--small {
  287. height: 2rem;
  288. font-size: 0.875rem;
  289. line-height: 1.125rem;
  290. padding-top: 0.25rem;
  291. padding-bottom: 0.25rem;
  292. }
  293. .input--adorned-start {
  294. padding-left: 2rem;
  295. }
  296. .input--adorned-end {
  297. padding-right: 2rem;
  298. }
  299. .input--valid {
  300. box-shadow: 0 -1px 0 0 #08875b inset !important;
  301. }
  302. .input--valid:focus {
  303. box-shadow: 0 0 0 2px #08875b !important;
  304. }
  305. .input--invalid {
  306. box-shadow: 0 -1px 0 0 #e93255 inset !important;
  307. }
  308. .input--invalid:focus {
  309. box-shadow: 0 0 0 2px #e93255 !important;
  310. }
  311. #search {
  312. background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224px%22%20fill%3D%22%232ba191%22%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%3Cpath%20d%3D%22M15.5%2014h-.79l-.28-.27C15.41%2012.59%2016%2011.11%2016%209.5%2016%205.91%2013.09%203%209.5%203S3%205.91%203%209.5%205.91%2016%209.5%2016c1.61%200%203.09-.59%204.23-1.57l.27.28v.79l5%204.99L20.49%2019l-4.99-5zm-6%200C7.01%2014%205%2011.99%205%209.5S7.01%205%209.5%205%2014%207.01%2014%209.5%2011.99%2014%209.5%2014z%22%2F%3E%3C%2Fsvg%3E");
  313. background-repeat: no-repeat;
  314. padding-left: 30px;
  315. background-position: 4px;
  316. }
  317. </style>
  318. </head>
  319. <body>
  320. <h1 class="name-header">PierreQ</h1>
  321. <div class="planning-container">
  322. <div class="daily-agenda">
  323. <div class="day-header">vendredi 09 septembre</div>
  324. <div>
  325. <div>
  326. <div class="agenda-creneau-header">
  327. <span class="agenda-creneau-time">21h00-22h00 </span>
  328. <span class="agenda-creneau-title">Bar Durante </span>
  329. </div>
  330. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  331. <div class="agenda-creneau-details--content">Les gens sont en autonomie pour les bières mais votre créneau sera de changer les futs, nettoyer la zone du bar + gérer l&#39;alcool fort : ne pas ouvrir 1000 bouteilles en même temps, et servir le vin blanc et rosé qui sont au frais
  332. + passer la serpillère si bière renversée</div>
  333. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  334. <div class="agenda-creneau-details--content">
  335. <div class="benevole">
  336. <svg
  337. class="icon"
  338. xmlns="http://www.w3.org/2000/svg"
  339. height="24px"
  340. viewBox="0 0 24 24"
  341. width="24px"
  342. fill="currentcolor"
  343. >
  344. <path d="M0 0h24v24H0z" fill="none" />
  345. <path
  346. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  347. />
  348. </svg>
  349. <span>David : 06 20 63 29 57</span>
  350. </div>
  351. </div>
  352. <div class="agenda-creneau-details--title">Le responsable</div>
  353. <div class="agenda-creneau-details--content">
  354. <div class="benevole">
  355. <svg
  356. class="icon"
  357. xmlns="http://www.w3.org/2000/svg"
  358. height="24px"
  359. viewBox="0 0 24 24"
  360. width="24px"
  361. fill="currentcolor"
  362. >
  363. <path d="M0 0h24v24H0z" fill="none" />
  364. <path
  365. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  366. />
  367. </svg>
  368. <span>Stef : 06 66 33 03 09</span>
  369. </div>
  370. </div>
  371. <div class="agenda-creneau-details--title">Ceux que tu remplaces</div>
  372. <div class="agenda-creneau-details--content">
  373. <div class="benevole">
  374. <svg
  375. class="icon"
  376. xmlns="http://www.w3.org/2000/svg"
  377. height="24px"
  378. viewBox="0 0 24 24"
  379. width="24px"
  380. fill="currentcolor"
  381. >
  382. <path d="M0 0h24v24H0z" fill="none" />
  383. <path
  384. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  385. />
  386. </svg>
  387. <span>Sophie : 06 16 48 88 23</span>
  388. </div>
  389. <div class="benevole">
  390. <svg
  391. class="icon"
  392. xmlns="http://www.w3.org/2000/svg"
  393. height="24px"
  394. viewBox="0 0 24 24"
  395. width="24px"
  396. fill="currentcolor"
  397. >
  398. <path d="M0 0h24v24H0z" fill="none" />
  399. <path
  400. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  401. />
  402. </svg>
  403. <span>Alexis Méca : 06 74 57 10 12</span>
  404. </div>
  405. </div>
  406. <div class="agenda-creneau-details--title">Les personnes qui arrivent après toi</div>
  407. <div class="agenda-creneau-details--content">
  408. <div class="benevole">
  409. <svg
  410. class="icon"
  411. xmlns="http://www.w3.org/2000/svg"
  412. height="24px"
  413. viewBox="0 0 24 24"
  414. width="24px"
  415. fill="currentcolor"
  416. >
  417. <path d="M0 0h24v24H0z" fill="none" />
  418. <path
  419. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  420. />
  421. </svg>
  422. <span>Fred : 07 85 46 09 59</span>
  423. </div>
  424. <div class="benevole">
  425. <svg
  426. class="icon"
  427. xmlns="http://www.w3.org/2000/svg"
  428. height="24px"
  429. viewBox="0 0 24 24"
  430. width="24px"
  431. fill="currentcolor"
  432. >
  433. <path d="M0 0h24v24H0z" fill="none" />
  434. <path
  435. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  436. />
  437. </svg>
  438. <span>Armand FP : 06 03 46 59 48</span>
  439. </div>
  440. </div>
  441. </div>
  442. </div>
  443. <div>
  444. <div class="agenda-creneau-header">
  445. <span class="agenda-creneau-time">23h00-00h00 </span>
  446. <span class="agenda-creneau-title">Laver les chiottes ! </span>
  447. </div>
  448. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  449. <div class="agenda-creneau-details--content">Laver les toilettes (cuvette / serpillère si besoin), les vasques. Vider les poubelles et remettre du PQ si besoin
  450. </div>
  451. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  452. <div class="agenda-creneau-details--content">
  453. <div class="benevole">
  454. <svg
  455. class="icon"
  456. xmlns="http://www.w3.org/2000/svg"
  457. height="24px"
  458. viewBox="0 0 24 24"
  459. width="24px"
  460. fill="currentcolor"
  461. >
  462. <path d="M0 0h24v24H0z" fill="none" />
  463. <path
  464. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  465. />
  466. </svg>
  467. <span>Olga : 06 49 44 08 43</span>
  468. </div>
  469. </div>
  470. <div class="agenda-creneau-details--title">Le responsable</div>
  471. <div class="agenda-creneau-details--content">
  472. <div class="benevole">
  473. <svg
  474. class="icon"
  475. xmlns="http://www.w3.org/2000/svg"
  476. height="24px"
  477. viewBox="0 0 24 24"
  478. width="24px"
  479. fill="currentcolor"
  480. >
  481. <path d="M0 0h24v24H0z" fill="none" />
  482. <path
  483. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  484. />
  485. </svg>
  486. <span>nan</span>
  487. </div>
  488. </div>
  489. <div class="agenda-creneau-details--title">Ceux que tu remplaces</div>
  490. <div class="agenda-creneau-details--content">
  491. <div class="benevole">
  492. <svg
  493. class="icon"
  494. xmlns="http://www.w3.org/2000/svg"
  495. height="24px"
  496. viewBox="0 0 24 24"
  497. width="24px"
  498. fill="currentcolor"
  499. >
  500. <path d="M0 0h24v24H0z" fill="none" />
  501. <path
  502. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  503. />
  504. </svg>
  505. <span>Fanny : 06 49 95 48 32</span>
  506. </div>
  507. <div class="benevole">
  508. <svg
  509. class="icon"
  510. xmlns="http://www.w3.org/2000/svg"
  511. height="24px"
  512. viewBox="0 0 24 24"
  513. width="24px"
  514. fill="currentcolor"
  515. >
  516. <path d="M0 0h24v24H0z" fill="none" />
  517. <path
  518. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  519. />
  520. </svg>
  521. <span>Vincent DP : 06 24 10 96 05</span>
  522. </div>
  523. </div>
  524. <div class="agenda-creneau-details--title">Les personnes qui arrivent après toi</div>
  525. <div class="agenda-creneau-details--content">
  526. <div class="benevole">
  527. <svg
  528. class="icon"
  529. xmlns="http://www.w3.org/2000/svg"
  530. height="24px"
  531. viewBox="0 0 24 24"
  532. width="24px"
  533. fill="currentcolor"
  534. >
  535. <path d="M0 0h24v24H0z" fill="none" />
  536. <path
  537. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  538. />
  539. </svg>
  540. <span>Abigaël : 06 70 81 08 23</span>
  541. </div>
  542. <div class="benevole">
  543. <svg
  544. class="icon"
  545. xmlns="http://www.w3.org/2000/svg"
  546. height="24px"
  547. viewBox="0 0 24 24"
  548. width="24px"
  549. fill="currentcolor"
  550. >
  551. <path d="M0 0h24v24H0z" fill="none" />
  552. <path
  553. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  554. />
  555. </svg>
  556. <span>Armand FP : 06 03 46 59 48</span>
  557. </div>
  558. </div>
  559. </div>
  560. </div>
  561. </div>
  562. </div>
  563. <div class="daily-agenda">
  564. <div class="day-header">samedi 10 septembre</div>
  565. <div>
  566. <div>
  567. <div class="agenda-creneau-header">
  568. <span class="agenda-creneau-time">18h00-18h30 </span>
  569. <span class="agenda-creneau-title">Animateur battle </span>
  570. </div>
  571. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  572. <div class="agenda-creneau-details--content">Animer les battles des fanfares le samedi en fin d&#39;après-midi. S&#39;organiser avant et prévoir les thématiques. voir le timing dispo avec le respo fanfare (Nathan)</div>
  573. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  574. <div class="agenda-creneau-details--content">
  575. <div class="benevole">
  576. <svg
  577. class="icon"
  578. xmlns="http://www.w3.org/2000/svg"
  579. height="24px"
  580. viewBox="0 0 24 24"
  581. width="24px"
  582. fill="currentcolor"
  583. >
  584. <path d="M0 0h24v24H0z" fill="none" />
  585. <path
  586. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  587. />
  588. </svg>
  589. <span>Stefan : 06 66 33 03 09</span>
  590. </div>
  591. </div>
  592. <div class="agenda-creneau-details--title">Le responsable</div>
  593. <div class="agenda-creneau-details--content">
  594. <div class="benevole">
  595. <svg
  596. class="icon"
  597. xmlns="http://www.w3.org/2000/svg"
  598. height="24px"
  599. viewBox="0 0 24 24"
  600. width="24px"
  601. fill="currentcolor"
  602. >
  603. <path d="M0 0h24v24H0z" fill="none" />
  604. <path
  605. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  606. />
  607. </svg>
  608. <span>Nathan : 06 03 95 63 75</span>
  609. </div>
  610. </div>
  611. </div>
  612. </div>
  613. <div>
  614. <div class="agenda-creneau-header">
  615. <span class="agenda-creneau-time">22h00-23h00 </span>
  616. <span class="agenda-creneau-title">Sécu/ronde JdP </span>
  617. </div>
  618. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  619. <div class="agenda-creneau-details--content">Balade dans la jardin pour s&#39;assurer que tout va bien.</div>
  620. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  621. <div class="agenda-creneau-details--content">
  622. <div class="benevole">
  623. <svg
  624. class="icon"
  625. xmlns="http://www.w3.org/2000/svg"
  626. height="24px"
  627. viewBox="0 0 24 24"
  628. width="24px"
  629. fill="currentcolor"
  630. >
  631. <path d="M0 0h24v24H0z" fill="none" />
  632. <path
  633. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  634. />
  635. </svg>
  636. <span>Stephane : 06 11 89 31 83</span>
  637. </div>
  638. </div>
  639. <div class="agenda-creneau-details--title">Le responsable</div>
  640. <div class="agenda-creneau-details--content">
  641. <div class="benevole">
  642. <svg
  643. class="icon"
  644. xmlns="http://www.w3.org/2000/svg"
  645. height="24px"
  646. viewBox="0 0 24 24"
  647. width="24px"
  648. fill="currentcolor"
  649. >
  650. <path d="M0 0h24v24H0z" fill="none" />
  651. <path
  652. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  653. />
  654. </svg>
  655. <span>Clovis 06 68 79 86 73</span>
  656. </div>
  657. </div>
  658. <div class="agenda-creneau-details--title">Ceux que tu remplaces</div>
  659. <div class="agenda-creneau-details--content">
  660. <div class="benevole">
  661. <svg
  662. class="icon"
  663. xmlns="http://www.w3.org/2000/svg"
  664. height="24px"
  665. viewBox="0 0 24 24"
  666. width="24px"
  667. fill="currentcolor"
  668. >
  669. <path d="M0 0h24v24H0z" fill="none" />
  670. <path
  671. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  672. />
  673. </svg>
  674. <span>Anne Croute : 06 33 02 77 18</span>
  675. </div>
  676. <div class="benevole">
  677. <svg
  678. class="icon"
  679. xmlns="http://www.w3.org/2000/svg"
  680. height="24px"
  681. viewBox="0 0 24 24"
  682. width="24px"
  683. fill="currentcolor"
  684. >
  685. <path d="M0 0h24v24H0z" fill="none" />
  686. <path
  687. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  688. />
  689. </svg>
  690. <span>Victor : 06 85 57 26 79</span>
  691. </div>
  692. </div>
  693. <div class="agenda-creneau-details--title">Les personnes qui arrivent après toi</div>
  694. <div class="agenda-creneau-details--content">
  695. <div class="benevole">
  696. <svg
  697. class="icon"
  698. xmlns="http://www.w3.org/2000/svg"
  699. height="24px"
  700. viewBox="0 0 24 24"
  701. width="24px"
  702. fill="currentcolor"
  703. >
  704. <path d="M0 0h24v24H0z" fill="none" />
  705. <path
  706. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  707. />
  708. </svg>
  709. <span>Voleur Elie : 06 43 71 56 83</span>
  710. </div>
  711. <div class="benevole">
  712. <svg
  713. class="icon"
  714. xmlns="http://www.w3.org/2000/svg"
  715. height="24px"
  716. viewBox="0 0 24 24"
  717. width="24px"
  718. fill="currentcolor"
  719. >
  720. <path d="M0 0h24v24H0z" fill="none" />
  721. <path
  722. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  723. />
  724. </svg>
  725. <span>Hutch : 06 89 09 67 29</span>
  726. </div>
  727. </div>
  728. </div>
  729. </div>
  730. <div>
  731. <div class="agenda-creneau-header">
  732. <span class="agenda-creneau-time">00h00-01h30 </span>
  733. <span class="agenda-creneau-title">Rangement/démontage JdP</span>
  734. </div>
  735. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  736. <div class="agenda-creneau-details--content">Ranger / nettoyer. Tout doit disparaitre et être remis dans les camions</div>
  737. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  738. <div class="agenda-creneau-details--content">
  739. <div class="benevole">
  740. <svg
  741. class="icon"
  742. xmlns="http://www.w3.org/2000/svg"
  743. height="24px"
  744. viewBox="0 0 24 24"
  745. width="24px"
  746. fill="currentcolor"
  747. >
  748. <path d="M0 0h24v24H0z" fill="none" />
  749. <path
  750. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  751. />
  752. </svg>
  753. <span>Elodie : 06 72 31 32 91</span>
  754. </div>
  755. <div class="benevole">
  756. <svg
  757. class="icon"
  758. xmlns="http://www.w3.org/2000/svg"
  759. height="24px"
  760. viewBox="0 0 24 24"
  761. width="24px"
  762. fill="currentcolor"
  763. >
  764. <path d="M0 0h24v24H0z" fill="none" />
  765. <path
  766. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  767. />
  768. </svg>
  769. <span>Armand TB : 06 46 24 64 37</span>
  770. </div>
  771. <div class="benevole">
  772. <svg
  773. class="icon"
  774. xmlns="http://www.w3.org/2000/svg"
  775. height="24px"
  776. viewBox="0 0 24 24"
  777. width="24px"
  778. fill="currentcolor"
  779. >
  780. <path d="M0 0h24v24H0z" fill="none" />
  781. <path
  782. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  783. />
  784. </svg>
  785. <span>Vincent DP : 06 24 10 96 05</span>
  786. </div>
  787. <div class="benevole">
  788. <svg
  789. class="icon"
  790. xmlns="http://www.w3.org/2000/svg"
  791. height="24px"
  792. viewBox="0 0 24 24"
  793. width="24px"
  794. fill="currentcolor"
  795. >
  796. <path d="M0 0h24v24H0z" fill="none" />
  797. <path
  798. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  799. />
  800. </svg>
  801. <span>Fred : 07 85 46 09 59</span>
  802. </div>
  803. <div class="benevole">
  804. <svg
  805. class="icon"
  806. xmlns="http://www.w3.org/2000/svg"
  807. height="24px"
  808. viewBox="0 0 24 24"
  809. width="24px"
  810. fill="currentcolor"
  811. >
  812. <path d="M0 0h24v24H0z" fill="none" />
  813. <path
  814. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  815. />
  816. </svg>
  817. <span>Voleur Elie : 06 43 71 56 83</span>
  818. </div>
  819. <div class="benevole">
  820. <svg
  821. class="icon"
  822. xmlns="http://www.w3.org/2000/svg"
  823. height="24px"
  824. viewBox="0 0 24 24"
  825. width="24px"
  826. fill="currentcolor"
  827. >
  828. <path d="M0 0h24v24H0z" fill="none" />
  829. <path
  830. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  831. />
  832. </svg>
  833. <span>Hutch : 06 89 09 67 29</span>
  834. </div>
  835. <div class="benevole">
  836. <svg
  837. class="icon"
  838. xmlns="http://www.w3.org/2000/svg"
  839. height="24px"
  840. viewBox="0 0 24 24"
  841. width="24px"
  842. fill="currentcolor"
  843. >
  844. <path d="M0 0h24v24H0z" fill="none" />
  845. <path
  846. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  847. />
  848. </svg>
  849. <span>Marine : 06 32 99 84 98</span>
  850. </div>
  851. <div class="benevole">
  852. <svg
  853. class="icon"
  854. xmlns="http://www.w3.org/2000/svg"
  855. height="24px"
  856. viewBox="0 0 24 24"
  857. width="24px"
  858. fill="currentcolor"
  859. >
  860. <path d="M0 0h24v24H0z" fill="none" />
  861. <path
  862. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  863. />
  864. </svg>
  865. <span>Anne-Gaëlle : 06 66 96 14 07</span>
  866. </div>
  867. <div class="benevole">
  868. <svg
  869. class="icon"
  870. xmlns="http://www.w3.org/2000/svg"
  871. height="24px"
  872. viewBox="0 0 24 24"
  873. width="24px"
  874. fill="currentcolor"
  875. >
  876. <path d="M0 0h24v24H0z" fill="none" />
  877. <path
  878. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  879. />
  880. </svg>
  881. <span>Camille : 06 98 35 89 88</span>
  882. </div>
  883. <div class="benevole">
  884. <svg
  885. class="icon"
  886. xmlns="http://www.w3.org/2000/svg"
  887. height="24px"
  888. viewBox="0 0 24 24"
  889. width="24px"
  890. fill="currentcolor"
  891. >
  892. <path d="M0 0h24v24H0z" fill="none" />
  893. <path
  894. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  895. />
  896. </svg>
  897. <span>Simon : 06 35 10 27 15</span>
  898. </div>
  899. </div>
  900. <div class="agenda-creneau-details--title">Le responsable</div>
  901. <div class="agenda-creneau-details--content">
  902. <div class="benevole">
  903. <svg
  904. class="icon"
  905. xmlns="http://www.w3.org/2000/svg"
  906. height="24px"
  907. viewBox="0 0 24 24"
  908. width="24px"
  909. fill="currentcolor"
  910. >
  911. <path d="M0 0h24v24H0z" fill="none" />
  912. <path
  913. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  914. />
  915. </svg>
  916. <span>Bar : Stef 06 66 33 03 09
  917. Logistique : Lorraine 06 71 35 76 12
  918. Général : Marine 06 32 99 84 98
  919. </span>
  920. </div>
  921. </div>
  922. </div>
  923. </div>
  924. <div>
  925. <div class="agenda-creneau-header">
  926. <span class="agenda-creneau-time">02h00-04h00 </span>
  927. <span class="agenda-creneau-title">soupe à l&#39;oignon</span>
  928. </div>
  929. <div class="agenda-creneau-details"><div class="agenda-creneau-details--title">Description</div>
  930. <div class="agenda-creneau-details--content">tout est indiqué dans le cahier de route de la commission repas</div>
  931. <div class="agenda-creneau-details--title">Liste des bénévoles avec toi</div>
  932. <div class="agenda-creneau-details--content">
  933. <div class="benevole">
  934. <svg
  935. class="icon"
  936. xmlns="http://www.w3.org/2000/svg"
  937. height="24px"
  938. viewBox="0 0 24 24"
  939. width="24px"
  940. fill="currentcolor"
  941. >
  942. <path d="M0 0h24v24H0z" fill="none" />
  943. <path
  944. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  945. />
  946. </svg>
  947. <span>Matthias : 06 89 04 53 82</span>
  948. </div>
  949. </div>
  950. <div class="agenda-creneau-details--title">Le responsable</div>
  951. <div class="agenda-creneau-details--content">
  952. <div class="benevole">
  953. <svg
  954. class="icon"
  955. xmlns="http://www.w3.org/2000/svg"
  956. height="24px"
  957. viewBox="0 0 24 24"
  958. width="24px"
  959. fill="currentcolor"
  960. >
  961. <path d="M0 0h24v24H0z" fill="none" />
  962. <path
  963. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  964. />
  965. </svg>
  966. <span>Olivier : 06 82 50 92 85
  967. Alexis : 06 79 99 31 24</span>
  968. </div>
  969. </div>
  970. <div class="agenda-creneau-details--title">Ceux que tu remplaces</div>
  971. <div class="agenda-creneau-details--content">
  972. <div class="benevole">
  973. <svg
  974. class="icon"
  975. xmlns="http://www.w3.org/2000/svg"
  976. height="24px"
  977. viewBox="0 0 24 24"
  978. width="24px"
  979. fill="currentcolor"
  980. >
  981. <path d="M0 0h24v24H0z" fill="none" />
  982. <path
  983. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  984. />
  985. </svg>
  986. <span>Lucas : 06 63 77 27 86</span>
  987. </div>
  988. <div class="benevole">
  989. <svg
  990. class="icon"
  991. xmlns="http://www.w3.org/2000/svg"
  992. height="24px"
  993. viewBox="0 0 24 24"
  994. width="24px"
  995. fill="currentcolor"
  996. >
  997. <path d="M0 0h24v24H0z" fill="none" />
  998. <path
  999. d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"
  1000. />
  1001. </svg>
  1002. <span>Nicole : 06 34 10 06 88</span>
  1003. </div>
  1004. </div>
  1005. </div>
  1006. </div>
  1007. </div>
  1008. </div>
  1009. </div>
  1010. </body>
  1011. </html>